示例#1
0
		public PropsOptions()
		{
			m_RecentProps = new RecentStringList();
			m_RecentValues = new RecentStringList();
			m_RecentTypes = new RecentStringList();
			m_RecentClasses = new RecentStringList();
			m_FBTypes = new RecentStringList();
			m_FBProps = new RecentStringList();
			m_FBValues = new RecentStringList();

			m_Filters = new StringCollection();
		}
示例#2
0
		/// <summary>
		/// Creates a new ItemsOptions object
		/// </summary>
		public ItemsOptions()
		{
			m_CustomParams = new RecentStringList();
		}
示例#3
0
		/// <summary>
		/// Creates a new AdminOptions object
		/// </summary>
		public AdminOptions()
		{
			m_FindByName = new RecentStringList();
			m_Args = new RecentStringList();
		}
示例#4
0
		public GeneralOptions()
		{
			m_ArtBackground = new ColorDef();
			m_ArtBackground.Color = System.Drawing.Color.White;

			m_Links = new ColorDef();
			m_Links.Color = System.Drawing.Color.BlueViolet;

			m_WindowLocation.X = ( System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Width - 694 ) / 2;
			m_WindowLocation.Y = ( System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Height - 210 ) / 2;

			m_SpeechList = new RecentStringList();
			m_WebList = new RecentStringList();
			// Issue 10 - Update the code to Net Framework 3.5 - http://code.google.com/p/pandorasbox3/issues/detail?id=10 - Smjert
			m_SpeechPresets = new List<string>();
			m_WebPresets = new List<string>();
			// Issue 10 - End
		}