예제 #1
0
 public void Expand()
 {
     if (!Expanded)
     {
         _tipWindow                 = new TipWindow(this);
         _tipWindow.Closed         += new EventHandler(tipWindow_Closed);
         _tipWindow.Expansion       = this.Expansion;
         _tipWindow.Overlay         = this.Overlay;
         _tipWindow.AutoCloseDelay  = this.AutoCloseDelay;
         _tipWindow.MouseLeaveDelay = this.MouseLeaveDelay;
         _tipWindow.WantClicks      = this.CopySupported;
         _tipWindow.Show();
     }
 }
예제 #2
0
 private void tipWindow_Closed(object sender, EventArgs e)
 {
     _tipWindow = null;
 }
예제 #3
0
		private void tipWindow_Closed( object sender, EventArgs e )
		{
			tipWindow = null;
		}
예제 #4
0
		public void Expand()
		{
			if ( !Expanded )
			{
				tipWindow = new TipWindow( this );
				tipWindow.Closed += new EventHandler( tipWindow_Closed );
				tipWindow.Expansion = this.Expansion;
				tipWindow.Overlay = this.Overlay;
				tipWindow.AutoCloseDelay = this.AutoCloseDelay;
				tipWindow.MouseLeaveDelay = this.MouseLeaveDelay;
				tipWindow.WantClicks = this.CopySupported;
				tipWindow.Show();
			}
		}