ComponentFactory.Krypton.Ribbon.AppTabController.OnMouseReleased(System.Windows.Forms.MouseEventArgs)

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

1 Example 7

1. Example

Project: Krypton
Source File: AppTabController.cs
public virtual void MouseUp(Control c, Point pt, MouseButtons button)
        {
            // Only interested in left mouse going up
            if (button == MouseButtons.Left)
                OnMouseReleased(new MouseEventArgs(MouseButtons.Left, 1, pt.X, pt.Y, 0));
        }