Me gustaría saber cómo tomar el título de la ventana de la ventana activa actual (es decir, la que tiene el foco) usando C #.
Me gustaría saber cómo tomar el título de la ventana de la ventana activa actual (es decir, la que tiene el foco) usando C #.
Respuestas:
Vea un ejemplo de cómo puede hacer esto con el código fuente completo aquí:
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;
}
Editado con los comentarios de @Doug McClean para una mejor corrección.
using System.Runtime.InteropServices;
y vuelva a colocar las líneas dll import y static extern. pegarlo dentro de la clase
Si estaba hablando de WPF, use:
Application.Current.Windows.OfType<Window>().SingleOrDefault(w => w.IsActive);
Da un vuelco Application.Current.Windows[]
y encuentra el que tiene IsActive == true
.
Utilice la API de Windows. Llame GetForegroundWindow()
.
GetForegroundWindow()
le dará un identificador (con nombre hWnd
) para la ventana activa.
Documentación: función GetForegroundWindow | Documentos de Microsoft
Basado en la función GetForegroundWindow | Documentos de 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;
}
Admite caracteres UTF8.
Si sucede que necesita el formulario activo actual de su aplicación MDI : (MDI- Interfaz de documentos múltiples).
Form activForm;
activForm = Form.ActiveForm.ActiveMdiChild;
puedes usar la clase de proceso, es muy fácil. usa este espacio de nombres
using System.Diagnostics;
si desea hacer un botón para activar la ventana.
private void button1_Click(object sender, EventArgs e)
{
Process currentp = Process.GetCurrentProcess();
TextBox1.Text = currentp.MainWindowTitle; //this textbox will be filled with active window.
}