ComponentFactory.Krypton.Toolkit.ButtonController.OnClick(System.Windows.Forms.MouseEventArgs)

Here are the examples of the csharp api class ComponentFactory.Krypton.Toolkit.ButtonController.OnClick(System.Windows.Forms.MouseEventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

4 Examples 7

1. Example

Project: Krypton
Source File: ButtonController.cs
private void OnRepeatTimer(object sender, EventArgs e)
        {
            // Modify subsequent repeat timing
            Timer t = (Timer)sender;
            t.Interval = Math.Max(SystemInformation.DoubleClickTime / 4, 100);
            OnClick(new MouseEventArgs(MouseButtons.Left, 1, 0, 0, 0));
        }

2. Example

Project: Krypton
Source File: ButtonController.cs
public virtual bool KeyUp(Control c, KeyEventArgs e)
        {
            Debug.Assert(c != null);
/n ..... /n //View Source file for more details /n }

3. Example

Project: Krypton
Source File: ButtonController.cs
public virtual bool MouseDown(Control c, Point pt, MouseButtons button)
		{
            // Is the co/n ..... /n //View Source file for more details /n }

4. Example

Project: Krypton
Source File: ButtonController.cs
public virtual void MouseUp(Control c, Point pt, MouseButtons button)
		{
            // Is the cont/n ..... /n //View Source file for more details /n }