예제 #1
0
 public HuesOptions()
 {
     m_RecentHues          = new TheBox.Common.RecentIntList();
     m_RecentHues.Capacity = 10;
 }
예제 #2
0
 /// <summary>
 /// Creates a RecentHuesMenu that can
 /// </summary>
 /// <param name="list"></param>
 public RecentHuesMenu(TheBox.Common.RecentIntList list)
 {
     m_List              = list;
     m_List.ListChanged += new EventHandler(m_List_ListChanged);
     MakeMenu();
 }
예제 #3
0
파일: Hues.cs 프로젝트: aj9251/pandorasbox3
		public HuesOptions()
		{
			m_RecentHues = new TheBox.Common.RecentIntList();
			m_RecentHues.Capacity = 10;
		}
예제 #4
0
		/// <summary>
		/// Creates a RecentHuesMenu that can 
		/// </summary>
		/// <param name="list"></param>
		public RecentHuesMenu( TheBox.Common.RecentIntList list )
		{
			m_List = list;
			m_List.ListChanged +=new EventHandler(m_List_ListChanged);
			MakeMenu();
		}