Example #1
0
 void HandleEnterNotifyEvent(object o, EnterNotifyEventArgs args)
 {
     Inside = true;
 }
Example #2
0
 void HandleEnterNotifyEvent(object o, EnterNotifyEventArgs args)
 {
     mouseOver = true;
     ShowTooltip();
 }
Example #3
0
        // events

        private void OnEnter(object sender, EnterNotifyEventArgs e)
        {
        }
Example #4
0
 void HandleButtonEnterNotifyEvent(object o, EnterNotifyEventArgs args)
 {
     //Console.WriteLine("HandleButtonEnterNotifyEvent");
     doRemove = false;
 }
Example #5
0
 private void OnEnterNotifyEvent(object sender, EnterNotifyEventArgs a)
 {
     //GdkWindow.Cursor = cursorCross;
 }
Example #6
0
 void HandleMouseIn(object o, EnterNotifyEventArgs args)
 {
     isHoveredOver = true;
     Update();
 }
Example #7
0
 protected void Restore_Enter(object o, EnterNotifyEventArgs args)
 {
     image_restore.Pixbuf = RestoreImageHover;
 }
Example #8
0
 protected void Close_Enter(object o, EnterNotifyEventArgs args)
 {
     image_close.Pixbuf = CloseImageHover;
 }
Example #9
0
 protected void HandleEnters(object o, EnterNotifyEventArgs args)
 {
     DrawActiveImage(o, 1);
 }
Example #10
0
 void EnterNotifyEventHandler(object o, EnterNotifyEventArgs args)
 {
     renderer.Highlight();
 }
 // <summary>
 // Show the remove image
 // </summary>
 void EnterNotifyEventHandler(object sender, EnterNotifyEventArgs args)
 {
     image.SetFromStock(Stock.Remove, IconSize.Menu);
 }
Example #12
0
 private void OnPopupEnterNotifyEvent(object o, EnterNotifyEventArgs args)
 {
     in_popup = true;
 }
 private void OnPopupEnterNotify(object o, EnterNotifyEventArgs args)
 {
     hide_delay_started = false;
 }