contactgroupsreceivedeventargs.cs
来自「该源代码用 C# 写成」· CS 代码 · 共 27 行
CS
27 行
using System;
namespace Org.InteliIM.Users
{
/// <summary>
/// ContactGroupsReceivedEventArgs 摘要说
/// </summary>
public class ContactGroupsReceivedEventArgs
: EventArgs
{
private ContactGroupCollection contactGroups;
public ContactGroupsReceivedEventArgs(ContactGroupCollection contactGroups)
{
this.ContactGroups = contactGroups;
}
/// <summary>
/// 联系人组
/// </summary>
public ContactGroupCollection ContactGroups
{
get { return this.contactGroups; }
set { this.contactGroups = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?