Chciałbym wiedzieć, jak pobrać tytuł okna bieżącego aktywnego okna (tj. Tego, które ma fokus) przy użyciu C #.
Chciałbym wiedzieć, jak pobrać tytuł okna bieżącego aktywnego okna (tj. Tego, które ma fokus) przy użyciu C #.
Odpowiedzi:
Zobacz przykład, jak możesz to zrobić z pełnym kodem źródłowym tutaj:
http://www.csharphelp.com/2006/08/get-current-window-handle-and-caption-with-windows-api-in-c/
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);
private string GetActiveWindowTitle()
{
const int nChars = 256;
StringBuilder Buff = new StringBuilder(nChars);
IntPtr handle = GetForegroundWindow();
if (GetWindowText(handle, Buff, nChars) > 0)
{
return Buff.ToString();
}
return null;
}
Edytowane z komentarzami @Doug McClean dla lepszej poprawności.
using System.Runtime.InteropServices;
i gdzie umieścić import biblioteki DLL i statyczne linie zewnętrzne. wklejanie go w klasie
Jeśli mówiłeś o WPF, użyj:
Application.Current.Windows.OfType<Window>().SingleOrDefault(w => w.IsActive);
Użyj interfejsu API systemu Windows. Zadzwoń GetForegroundWindow()
.
GetForegroundWindow()
da ci uchwyt (nazwany hWnd
) do aktywnego okna.
Dokumentacja: funkcja GetForegroundWindow | Dokumenty Microsoft
Oparty na funkcji GetForegroundWindow | Dokumenty Microsoft :
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowTextLength(IntPtr hWnd);
private string GetCaptionOfActiveWindow()
{
var strTitle = string.Empty;
var handle = GetForegroundWindow();
// Obtain the length of the text
var intLength = GetWindowTextLength(handle) + 1;
var stringBuilder = new StringBuilder(intLength);
if (GetWindowText(handle, stringBuilder, intLength) > 0)
{
strTitle = stringBuilder.ToString();
}
return strTitle;
}
Obsługuje znaki UTF8.
Jeśli zdarzy się, że potrzebujesz aktualnego aktywnego formularza z aplikacji MDI : (MDI- Multi Document Interface).
Form activForm;
activForm = Form.ActiveForm.ActiveMdiChild;
możesz użyć klasy procesu, to bardzo proste. użyj tej przestrzeni nazw
using System.Diagnostics;
jeśli chcesz utworzyć przycisk, aby uaktywnić okno.
private void button1_Click(object sender, EventArgs e)
{
Process currentp = Process.GetCurrentProcess();
TextBox1.Text = currentp.MainWindowTitle; //this textbox will be filled with active window.
}