mirror of
https://github.com/yaakov-h/Notepad.Extensions.Logging.git
synced 2024-11-22 11:14:50 +00:00
Use EnumWindows instead of FindWindow
This commit is contained in:
parent
e512889b17
commit
1a934be05f
2 changed files with 61 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace Microsoft.Extensions.Logging
|
||||
{
|
||||
|
@ -15,5 +16,13 @@ namespace Microsoft.Extensions.Logging
|
|||
|
||||
[DllImport("User32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
|
||||
public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, [MarshalAs(UnmanagedType.LPWStr)] string lParam);
|
||||
|
||||
public delegate bool EnumWindowsDelegate(IntPtr hWnd, IntPtr lParam);
|
||||
|
||||
[DllImport("user32.dll")]
|
||||
public static extern bool EnumWindows(EnumWindowsDelegate lpEnumFunc, IntPtr lParam);
|
||||
|
||||
[DllImport("User32.dll")]
|
||||
public static extern int GetWindowText(IntPtr hWndParent, StringBuilder sb, int maxCount);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace Microsoft.Extensions.Logging
|
||||
{
|
||||
|
@ -6,28 +8,66 @@ namespace Microsoft.Extensions.Logging
|
|||
{
|
||||
public static IntPtr FindNotepadWindow()
|
||||
{
|
||||
var hwnd = FindMainWindow();
|
||||
IntPtr edit = NativeMethods.FindWindowEx(hwnd, IntPtr.Zero, "EDIT", null);
|
||||
sb ??= new StringBuilder(4096);
|
||||
|
||||
try
|
||||
{
|
||||
FindMainWindow();
|
||||
if (handle == IntPtr.Zero)
|
||||
{
|
||||
return handle;
|
||||
}
|
||||
|
||||
IntPtr edit = NativeMethods.FindWindowEx(handle, IntPtr.Zero, "EDIT", null);
|
||||
return edit;
|
||||
}
|
||||
finally
|
||||
{
|
||||
handle = IntPtr.Zero;
|
||||
sb.Clear();
|
||||
}
|
||||
}
|
||||
|
||||
static IntPtr FindMainWindow()
|
||||
{
|
||||
IntPtr hwnd;
|
||||
NativeMethods.EnumWindows(enumWindowsDelegate, IntPtr.Zero);
|
||||
return handle;
|
||||
}
|
||||
|
||||
hwnd = NativeMethods.FindWindow(null, "Untitled - Notepad");
|
||||
if (hwnd != IntPtr.Zero)
|
||||
static NativeMethods.EnumWindowsDelegate enumWindowsDelegate = new NativeMethods.EnumWindowsDelegate(EnumWindowsCallback);
|
||||
|
||||
static bool EnumWindowsCallback(IntPtr hWnd, IntPtr lParam)
|
||||
{
|
||||
return hwnd;
|
||||
}
|
||||
|
||||
hwnd = NativeMethods.FindWindow(null, "*Untitled - Notepad");
|
||||
if (hwnd != IntPtr.Zero)
|
||||
var result = NativeMethods.GetWindowText(hWnd, sb, sb.Capacity);
|
||||
if (result < 0)
|
||||
{
|
||||
return hwnd;
|
||||
throw new Win32Exception(result);
|
||||
}
|
||||
|
||||
return IntPtr.Zero;
|
||||
if (IsKnownNotepadWindow(sb.ToString()))
|
||||
{
|
||||
WindowFinder.handle = hWnd;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
[ThreadStatic]
|
||||
static IntPtr handle;
|
||||
|
||||
[ThreadStatic]
|
||||
static StringBuilder sb;
|
||||
|
||||
static bool IsKnownNotepadWindow(string titleText)
|
||||
{
|
||||
switch (titleText)
|
||||
{
|
||||
case "Untitled - Notepad":
|
||||
case "*Untitled - Notepad":
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue