using System.Runtime.InteropServices;
using System.Diagnostics;
public class GetNotePadLocation
{
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern IntPtr FindWindow(string strClassName, string strWindowName);
[DllImport("user32.dll")]
public static extern bool GetWindowRect(IntPtr hwnd, ref Rect rectangle);
public struct Rect
{
public int Left { get; set; }
public int Top { get; set; }
public int Right { get; set; }
public int Bottom { get; set; }
}
public static void NotePadLocation()
{
Process[] processes = Process.GetProcessesByName("notepad");
Process lol = processes[0];
IntPtr ptr = lol.MainWindowHandle;
Rect NotepadRect = new Rect();
GetWindowRect(ptr, ref NotepadRect);
}
}
Dup - http://stackoverflow.com/questions/1364440/how-to-get-and-set-window-position- ऑफ-ए-एप्लिकेशन-इन-सी-तेज –
आप इसके साथ क्या करना चाहते हैं? [अपनी खिड़की के साथ एंटीवायरस से बाहर निकलें :)] –
लॉल, क्या खिड़की की स्थिति पाने के लिए एकमात्र उपयोग आप सोच सकते हैं? – Patryk