rssconfigsection.cs
来自「自己做的一个浏览器~~大家请看看~如果合意给个彩头」· CS 代码 · 共 31 行
CS
31 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using APLib.Common.Configuration;
namespace APLib.Windows.Control
{
/// <summary>
/// 配置段类
/// </summary>
public class RSSConfigSection : ConfigSection
{
/// <summary>
/// RSS Feed集合
/// </summary>
[ConfigurationProperty("RSSFeeds", IsRequired = true)]
public ConfigElementCollection RSSFeeds
{
get
{
return this["RSSFeeds"] as ConfigElementCollection;
}
set
{
this["RSSFeeds"] = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?