从c#代码控制记事本

时间:2012-01-30 06:09:29

标签: c# .net

我正在从我的c#代码向%记事本发送%FO,^ V,%O等按键。 我编写了代码来处理两种情况,例如记事本是处于活动状态还是未处于活动状态。 对于活动记事本,我只是获取它的句柄并将前景窗口设置为记事本。

该代码适用于非活动记事本,但对于活动部分,它会运行一段时间或某些时候失败,即它不一致。

    Following is my code:




    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Diagnostics;
    using System.IO;

    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }


            private void Form1_Load(object sender, EventArgs e)
            {
                string keys = "";
                string path;

                int iHandle;

            iHandle = NativeWin32.FindWindow(null, "Untitled - Notepad"); 
            //acquiring  handle of notepad(active) 

                if (iHandle!=0)
                {
                    NativeWin32.SetForegroundWindow(iHandle);
                }//checking whether notepad is active

                else
                {

                    Process.Start("notepad");
                }//launching notepad when not active

               path = System.IO.Path.GetDirectoryName(
               System.Reflection.Assembly.GetExecutingAssembly().GetNam().CodeBase);
               //path of directory 
                 containing file to be
                 opened and the code

               Clipboard.Clear();
               Clipboard.SetText(path + "\\Hello.txt");

               keys = "%FO";
                System.Windows.Forms.SendKeys.SendWait(keys);

                keys = "^V";
                System.Windows.Forms.SendKeys.SendWait(keys);
                keys = "%O";

                System.Windows.Forms.SendKeys.SendWait(keys);


                Application.Exit();
            }
    }
    }

有人可以告诉我为什么当记事本处于活动状态时程序运行不一致。

1 个答案:

答案 0 :(得分:0)

您正在使用(至少)两个应用程序 - 它是您的应用程序和notepad.exe 请注意,根据SetForegroundWindow文档,如果您可以成功使用它,则存在很多限制,例如: “当用户使用另一个窗口时,应用程序无法强制窗口进入前台。而是Windows会闪烁窗口的任务栏按钮以通知用户。”可以在此处找到更多相关信息:How can I set a foreground window if SetForegroundWindow and ShowWindowAsync doesn't work?

此外,了解您要实现的目标会很棒。如果您只想自动化UI,请使用Coded UI tests instead.。仅显示文本,请托管文本框。