You can DllImport and call any win32 api in code stage:
[DllImport(""user32.dll"", SetLastError = true)]
static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
IntPtr hwnd = FindWindowEx(IntPtr.Zero,IntPtr.Zero,WindowClass,WindowName);