예제 #1
0
 /// <summary>
 /// Constructor of the StatusBarEx control.
 /// </summary>
 public StatusBarEx()
 {
     Text       = GetType().Name;
     showPanels = false;               // don't show different StatusBarPanels initially
     panels     = new StatusBarPanelCollection(this);
     panels.Clear();
 }
예제 #2
0
파일: StatusBar.cs 프로젝트: ForNeVeR/pnet
 public StatusBar()
 {
     Name       = "StatusBar";
     Height     = 22;
     Dock       = DockStyle.Bottom;
     showPanels = false;
     sizingGrip = true;
     BackColor  = SystemColors.Control;
     panels     = new StatusBarPanelCollection(this);
 }
예제 #3
0
		public StatusBar()
		{
			Name = "StatusBar";
			Height = 22;
			Dock = DockStyle.Bottom;
			showPanels = false;
			sizingGrip = true;
			BackColor = SystemColors.Control;
			panels = new StatusBarPanelCollection(this);
		}
예제 #4
0
		/// <summary>
		/// Constructor of the StatusBarEx control.
		/// </summary>
		public StatusBarEx()
		{
			Text = GetType().Name;
			showPanels = false;   // don't show different StatusBarPanels initially
			panels = new StatusBarPanelCollection(this);
			panels.Clear();
		}