使用 FindWindow 和 sendmessage 找到了一个解决方案,下面是相同的代码 -
[DllImport("user32.dll", EntryPoint = "FindWindow")]
private static extern IntPtr FindWindow(string lp1, string lp2);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
extern static IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, [In] string lpClassName, [In] string lpWindowName);
[DllImport("User32.dll", EntryPoint = "SendMessage")]
extern static int SendMessageGetTextLength(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, string lParam);
[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, int lParam);
// Writes text line into log file.
// If the log file is opened with notepad, it is pasted there instead
static public void Log(string inputText, DateTime startTime = new DateTime())
{
try
{
/* DateTime now = DateTime.Now;
inputText = now.ToString() + " " + inputText;
if (startTime != new DateTime())
{
double diffTime = (int)(now - startTime).TotalMilliseconds;
String t;
if (diffTime >= 10000)
t = ((int) diffTime / 10000).ToString() + " s";
else
t = ((int)diffTime).ToString() + " ms";
inputText += ", " + t;
}
*/ //irrelevant to the answer
// search for log file opened with notepad
IntPtr editBox = GetNotepadWindow();
if (editBox == IntPtr.Zero)
{
// log file is not open => append line to file
try
{
var writer = new StreamWriter(LogFile, true);
writer.WriteLine(inputText);
writer.Flush();
writer.Close();
}
catch
{
}
return;
}
// paste line into notepad
int length = SendMessageGetTextLength(editBox, WM_GETTEXTLENGTH, IntPtr.Zero, IntPtr.Zero);
SendMessage(editBox, EM_SETSEL, length, length); // search end of file position
inputText += "\r\n";
SendMessage(editBox, EM_REPLACESEL, 1, inputText); // append new line
}
catch
{
}
}
static private IntPtr GetNotepadWindow()
{
string windowName = LogFile;
if (string.IsNullOrEmpty(LogFile))
windowName = "Untitled";
int index = windowName.LastIndexOf('\\');
if (index >= 0)
windowName = windowName.Substring(index+1);
IntPtr mainWindow = FindWindow("Notepad", windowName + " - Notepad");
IntPtr editBox = IntPtr.Zero;
if (mainWindow != IntPtr.Zero)
editBox = FindWindowEx(mainWindow, new IntPtr(0), "Edit", null);
return editBox;
}