我使用的是WinForms,在我的表单上我有一个RichTextBox。当我的表单没有焦点但是可见并且我尝试突出显示/选择文本时,它不允许我直到表单或文本框本身具有焦点。
我试过了:
txtInput.MouseDown += (s, e) => { txtInput.Focus(); }
但无济于事,我似乎无法在网上找到有关此问题的任何内容。
使用记事本等其他程序进行测试时,它确实具有所需的行为。
答案 0 :(得分:3)
MouseDown
为时已晚。
这肯定是一种解决方法,但您可能只需要:
private void txtInput_MouseMove(object sender, MouseEventArgs e)
{
txtInput.Focus();
}
或当然:
txtInput.MouseMove += (s, e) => { txtInput.Focus(); }
因为它可能会在您移动文本框时从表单上的其他控件中窃取焦点。如果这是一个问题,您可以使用answers here..
中的一个检查您的程序是否处于活动状态,从而阻止它答案 1 :(得分:2)
您可以使用MouseDown
和MouseMove
事件手动进行选择。答案基于Taw的第一个想法:
int start = 0;
private void richTextBox1_MouseDown(object sender, MouseEventArgs e)
{
start = richTextBox1.GetTrueIndexPositionFromPoint(e.Location);
richTextBox1.SelectionStart = start;
}
private void richTextBox1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button.HasFlag(MouseButtons.Left))
{
var current = richTextBox1.GetTrueIndexPositionFromPoint(e.Location);
richTextBox1.SelectionStart = Math.Min(current, start);
richTextBox1.SelectionLength = Math.Abs(current - start);
}
}
以下是来自Justin的GetTrueIndexPositionFromPoint
方法的代码:
public static class RichTextBoxExtensions
{
private const int EM_CHARFROMPOS = 0x00D7;
public static int GetTrueIndexPositionFromPoint(this RichTextBox rtb, Point pt)
{
POINT wpt = new POINT(pt.X, pt.Y);
int index = (int)SendMessage(new HandleRef(rtb, rtb.Handle), EM_CHARFROMPOS, 0, wpt);
return index;
}
[DllImport("User32.dll", EntryPoint = "SendMessage", CharSet = CharSet.Auto)]
private static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, POINT lParam);
}
答案 2 :(得分:1)
这个搜索对我来说不起作用,因为我的子窗口有一个TextBox,当我将鼠标悬停在RichTextBox上时会失去焦点。经过一些反复试验,我找到了另一种解决方案:
private const int WM_PARENTNOTIFY = 0x0210;
private Form Form = new Form(); // Your Form here!
private RichTextBox RTB = new RichTextBox(); // Your RichTextBox here!
protected override void WndProc(ref Message m)
{
if ((m.Msg == WM_PARENTNOTIFY) && (Form != null) && (Form.Visible) && (GetChildAtPoint(PointToClient(Cursor.Position)) == RTB))
{
RTB.Focus();
}
base.WndProc(ref m);
}
可以多次发送WM_PARENTNOTIFY消息(包括初始化主表单时),因此检查您的表单是否为空是很重要的,否则您将收到异常。
答案 3 :(得分:1)
这对我有用;
扩展RichTextBox并使用此
覆盖WindowProcUsageStats