我正在用C#写作。
我有一个过程,可以在我的程序中嵌入第三方应用程序。 我还有一个RichTextBox,我在其中编写文本然后在嵌入式应用程序中实时显示。一切正常但我需要移动鼠标,因为应用程序将获得焦点,然后刷新并向我显示更改。
这是一个过程:
private void button2_Click(object sender, EventArgs e)
{
System.IO.File.WriteAllText(@"ForParsing.txt", textBox1.Text);
pdf.StartInfo.FileName = @"yap.exe";
pdf.StartInfo.Arguments = "ForParsing.dvi";
pdf.Start();
pdf.WaitForInputIdle(-1);
SetParent(pdf.MainWindowHandle, this.splitContainer2.Panel1.Handle);
SetWindowPos(pdf.MainWindowHandle, HWND_TOP,
this.splitContainer2.Panel1.ClientRectangle.Left,
this.splitContainer2.Panel1.ClientRectangle.Top,
this.splitContainer2.Panel1.ClientRectangle.Width,
this.splitContainer2.Panel1.ClientRectangle.Height,
SWP_NOACTIVATE | SWP_SHOWWINDOW);
}
我在TextBox下面有一个按键处理程序。 按下键时,我专注于我的程序中嵌入的第三方应用程序。
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
System.IO.File.WriteAllText(@"ForParsing.txt", textBox1.Text);
//Focus on third party application
SetForegroundWindow(pdf.MainWindowHandle);
}
到目前为止一切顺利。 现在的问题是:我希望焦点立即返回到文本框中的courser所在的位置。我希望能够继续在TextBox中继续写作,除了嵌入式应用程序的实时刷新之外没有任何事情发生。
简单来说,我需要第三方应用程序立即刷新(获得焦点),并且我能够在TextBox的当前位置无干扰地打字。
有可能吗?对此有更好,更简单的解决方案吗?我很乐意听取任何建议。
由于我不能回答我自己的问题,我会在这里写一下:
我找到了解决人们问题的解决方案
以下是我所做的:
private void richTextBox1_TextChanged(object sender,EventArgs e) { System.IO.File.WriteAllText(@“ForParsing.txt”,textBox1.Text);
//Focus on third party application
SetForegroundWindow(pdf.MainWindowHandle);
//Restore focus
pdf.WaitForInputIdle();
SetForegroundWindow(this.Handle);
this.Focus();
}
感谢大家的帮助
答案 0 :(得分:0)
当您需要重点关注时:
if (!handle.Equals(IntPtr.Zero))
{
if (NativeMethods.IsIconic(WindowHandle))
NativeMethods.ShowWindow(WindowHandle, 0x9); // Restore
NativeMethods.SetForegroundWindow(handle);
}
其中:
[DllImport("User32.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern Boolean IsIconic([In] IntPtr windowHandle);
[DllImport("User32.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern Boolean SetForegroundWindow([In] IntPtr windowHandle);
[DllImport("User32.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern Boolean ShowWindow([In] IntPtr windowHandle, [In] Int32 command);
通常,当您向后聚焦时,tabindex始终位于您离开的位置。所以这不是一个问题......