comboitemcollectioneditor.cs

来自「ASP中web自定义控件的使用源码及说明文档」· CS 代码 · 共 21 行

CS
21
字号
using System;
using System.ComponentModel.Design;

namespace Bestcomy.Web.UI.WebControls
{
	/// <summary>
	/// 
	/// </summary>
	public class ComboItemCollectionEditor : CollectionEditor
	{
		public ComboItemCollectionEditor(Type type) : base(type)
		{
		}

		protected override bool CanSelectMultipleInstances()
		{
			return false;
		}
	}
}

⌨️ 快捷键说明

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