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.
