示例#1
0
		public PopupContainer(AutoHideBar bar)
		{
			_autoHideBar = bar;
			SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
			SetStyle(ControlStyles.Selectable, false);
		    _toolTips0 = new ToolTips(this) {Boolean_0 = false};
		    _toolTips0.Event_0 += method_4;
			BackColor = SystemColors.Control;
		}
示例#2
0
 public DockContainer()
 {
     _splitLayout = new SplitLayoutSystem();
     _splitLayout.SetDockContainer(this);
     SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
     SetStyle(ControlStyles.Selectable, false);
     layoutSystems = new ArrayList();
     _toolTips0 = new ToolTips(this) { Boolean_0 = false };
     _toolTips0.Event_0 += method_16;
     BackColor = SystemColors.Control;
 }
示例#3
0
			public ToolTipsForm(ToolTips tooltips)
			{
				_parent = tooltips;
				SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
				Font = tooltips._control.Font;
				_tfFlags = (TextFormatFlags.NoClipping | TextFormatFlags.VerticalCenter);
				ShowInTaskbar = false;
				FormBorderStyle = FormBorderStyle.None;
				ControlBox = false;
				StartPosition = FormStartPosition.Manual;
			}