Пример #1
0
 protected override void OnMouseDoublePressed(Nuclex.Input.MouseButtons button)
 {
     if (this.Parent is MinimizableWindowControl)
     {
         (this.Parent as MinimizableWindowControl).Minimizable = false;
     }
 }
Пример #2
0
 protected override void OnMouseDoublePressed(Nuclex.Input.MouseButtons button)
 {
     this.Text = "Double clicked with: " + button.ToString();
 }
Пример #3
0
 void ibScrollRight_Clicked(Nuclex.Input.MouseButtons arg1, float arg2, float arg3)
 {
     chrCharacter.Direction--;
 }