show/hide this revision's text 2 added 6 characters in body

For item 1 and 2, the best way to get access to these input events is to create a custom TextBox deriving from the built in TextBox. Then you can override the OnKeyDown and OnMouseLeftButton down. From there you can either call the necessary code, or fire a new event. e.g.:

public class MyTextBox : TextBox
{
    public event MouseButtonEventHandler PreviewMouseLeftButtonDownMySpecialMouseLeftButtonDown;

    protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
    {
        if (PreviewMouseLeftButtonDown MySpecialMouseLeftButtonDown != null)
        {
            PreviewMouseLeftButtonDown(thisMySpecialMouseLeftButtonDown(this, e);
        }
        base.OnMouseLeftButtonDown(e);
    }
}

Similarly with OnKeyDown.

show/hide this revision's text 1

For item 1 and 2, the best way to get access to these input events is to create a custom TextBox deriving from the built in TextBox. Then you can override the OnKeyDown and OnMouseLeftButton down. From there you can either call the necessary code, or fire a new event. e.g.:

public class MyTextBox : TextBox
{
    public event MouseButtonEventHandler PreviewMouseLeftButtonDown;

    protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
    {
        if (PreviewMouseLeftButtonDown != null)
        {
            PreviewMouseLeftButtonDown(this, e);
        }
        base.OnMouseLeftButtonDown(e);
    }
}

Similarly with OnKeyDown.