groupitem.cs

来自「使用C#语言开发的远程监控管理平台;使用soaphead对webservice进」· CS 代码 · 共 53 行

CS
53
字号
using System;
using System.ComponentModel;

namespace IssueVision
{
	// The ExpandableList control contains a collection of GroupItem objects.
	// Each object specifies the group title and filter that determines
	// which rows are displayed in the group.
	[TypeConverterAttribute(typeof(GroupItemConverter))]
	public class GroupItem
	{
		// Internal members.
		private string m_groupTitle;
		private string m_rowFilter;

		public string GroupTitle
		{
			get
			{
				return m_groupTitle;
			}

			set
			{
				m_groupTitle = value;
			}
		}

		public string RowFilter
		{
			get
			{
				return m_rowFilter;
			}

			set
			{
				m_rowFilter = value;
			}
		}

		public GroupItem()
		{
		}

		public GroupItem(string title, string filter)
		{
			m_groupTitle = title;
			m_rowFilter = filter;
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?