📄 groupitemcollection.cs
字号:
using System;
using System.Collections;
using System.Reflection;
namespace IssueVision
{
// Collection of GroupItem objects.
public class GroupItemCollection : CollectionBase
{
// Return the item at the specified index.
public GroupItem this[int Index]
{
get
{
return (GroupItem)List[Index];
}
}
// Adds elements to the list.
public void AddRange(GroupItem[] Items)
{
foreach (GroupItem item in Items)
{
this.List.Add(item);
}
}
// Add one element to the list.
public void Add(GroupItem Item)
{
List.Add(Item);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -