⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 personoptions.cs

📁 美国移民局软件,请大家不要用于商业用途!站长为什么还不开通我的帐号呀
💻 CS
字号:
using System;
using System.Windows.Forms;
using System.ComponentModel;
using System.Drawing;

namespace Tracker7UI.plugins.People
{
	/// <summary>
	/// Summary description for PersonOptions.
	/// </summary>
	[DefaultPropertyAttribute("LoginEnabled")]
	public class PersonOptions
	{

		private Font _ScreenFont = new Font("Tahoma", 8, FontStyle.Regular);

		public PersonOptions()
		{
			//
			// TODO: Add constructor logic here
			//
		}

		/// <summary>
		/// True = this person is allowed to login to the system.
		/// </summary>
		[CategoryAttribute("Permissions"),
		ReadOnlyAttribute(true),
		DefaultValueAttribute(false),
		DescriptionAttribute("Allow Person Login"),
		BrowsableAttribute(true)]
		public bool LoginEnabled
		{
			get
			{
				return true;
			}
			set
			{
			}
		}

		/// <summary>
		/// True = this person is allowed to login to the system.
		/// </summary>
		[CategoryAttribute("Contact Information"),
		ReadOnlyAttribute(false),
		DefaultValueAttribute(1),
		DescriptionAttribute("Select this person preferred mailing address"),
		BrowsableAttribute(true)]
		public int PreferredMailingAddress
		{
			get
			{
				return 1;
			}
			set
			{
			}
		}

		/// <summary>
		/// Set The font used on screen
		/// </summary>
		[CategoryAttribute("Appearance"),
		ReadOnlyAttribute(false),
		DescriptionAttribute("Select the font you want to see on screen"),
		BrowsableAttribute(true)]
		public Font ScreenFont
		{
			get {return _ScreenFont; }
			set { _ScreenFont = value;}
		}

	}
}

⌨️ 快捷键说明

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