• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

查找并启动应用程序的窗口

用户头像
it1352
帮助3

问题说明

假设的notepad.exe是开放和它的窗口处于非活动状态。我会写一个应用程序来激活它。如何使?

Assume that notepad.exe is opening and the it's window is inactive. I will write an application to activate it. How to make?

更新:窗口标题是不确定的。所以,我不喜欢它基于窗口的标题使用的FindWindow。

Update: The window title is undefined. So, I don't like to use to FindWindow which based on window's title.

我的应用程序是WinForm的C#2.0。谢谢你。

My application is Winform C# 2.0. Thanks.

正确答案

#1

您需要的P / Invoke SetForegroundWindow()。 Process.MainWindowHandle可以给你你需要的手柄。例如:

You'll need to P/invoke SetForegroundWindow(). Process.MainWindowHandle can give you the handle you'll need. For example:

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;

class Program {
    static void Main(string[] args) {
        var prc = Process.GetProcessesByName("notepad");
        if (prc.Length > 0) {
            SetForegroundWindow(prc[0].MainWindowHandle);
        }
    }
    [DllImport("user32.dll")]
    private static extern bool SetForegroundWindow(IntPtr hWnd);
}

请注意,如果你有记事本中运行多个副本的模糊性。

Note the ambiguity if you've got more than one copy of Notepad running.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhbjbiif
系列文章
更多 icon
同类精品
更多 icon
继续加载