loginbaritem.cs

来自「《Visual Basic案例开发》一书的源代码」· CS 代码 · 共 46 行

CS
46
字号
using System;

namespace _36Hang.Web.UI.WebControls
{
	public class LoginBarItem
	{
		private string _ID;
		private string _Label;
		private string _Type;
		private string _Field;
		private string _Text;
		
		public LoginBarItem() {}

		public string ID
		{
			get { return _ID; }
			set { _ID = value; }
		}

		public string Label
		{
			get { return _Label; }
			set { _Label = value; }
		}

		public string Type
		{
			get { return _Type; }
			set { _Type = value; }
		}

		public string Field
		{
			get { return _Field; }
			set { _Field = value; }
		}

		public string Text
		{
			get { return _Text; }
			set { _Text = value; }
		}
	}
}

⌨️ 快捷键说明

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