91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何制作網站掛機程序

發布時間:2021-11-01 09:09:02 來源:億速云 閱讀:224 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“C#如何制作網站掛機程序”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“C#如何制作網站掛機程序”這篇文章吧。

    一、程序界面(如下圖)

    名稱:模擬鍵盤程序,為什么不用掛機程序,是因為其功能弱小,針對的范圍窄,而且,它作為副產品,真心不是為掛機而作。請注意我們的目標是:自動化網絡測試。

    C#如何制作網站掛機程序

    二、使用說明

    1.界面說明

    1.應用程序路徑,這里針對FireFox瀏覽器,所以需要放程序的地址。
    2.網站地址:符合URL格式的能直接訪問的本地文件或者網址
    3.瀏覽器標題:FireFox程序已經對應用程序標題作了隱藏,如果看到標題欄顯示:測試
    其實應用程序的標題應該是:測試 — Mozilla Firefox
    4.【啟動瀏覽器】其實這個功能目前完全可以不去管,直接手動啟動FireFox即可。
    5.【Start】按鈕才是本質,這里將根據【瀏覽器標題】內容來查找
    到FireFox瀏覽網頁的真正【句柄】,另外如果找到,將顯示【句柄】的十進制整數值,如果顯示0,表示未找到。
    6.【Stop】將定時器操作禁用。

    2.使用注意點

    1.顯示【句柄】位置啟動后,必須是非零值,如果是0,則修改【瀏覽器標題】內容,重新點【Start】
    2.必須保持FireFox瀏覽器在所有窗體的前面
    3.保證【計算機】不會進入【睡眠】或者進入【屏幕保護】狀態

    三、程序開發過程

    1.測試網頁

    1.文件名:test.html
    2.網頁代碼(如下):

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>測試</title>
    	<meta charset="utf-8" />
    </head>
    <body>
        <script language="javascript">
            alert("ok");
        </script>
    </body>
    </html>

    2.程序完整代碼

    using System;
    using System.Diagnostics;
    using System.Runtime.InteropServices;
    using System.Threading;
    using System.Windows.Forms;
    
    namespace 模擬鍵盤
    {
        public partial class Form1 : Form
        {
            [DllImport("user32.dll", EntryPoint = "keybd_event", SetLastError = true)]
            public static extern void keybd_event(Keys bVk, byte bScan, uint dwFlags, uint dwExtraInfo);
             [DllImport("user32.dll", EntryPoint = "FindWindow")]
            private static extern IntPtr FindWindow(string IpClassName, string IpWindowName);
            //查找窗體控件
            public int iSeconds=30;
            public delegate bool CallBack(int hwnd, int lParam);
            public Process Proc = new Process();
            
            public System.Windows.Forms.Timer myTimer;
            public Form1()
            {
                InitializeComponent();
            }
            private void btnBrowser_Click(object sender, EventArgs e)
            {
                openFileDialog1.Filter = "*.exe|*.exe|所有文件|*.*";
                openFileDialog1.FileName = "";
                DialogResult dr = openFileDialog1.ShowDialog();
                if(DialogResult.OK==dr)
                {
                    txtFile.Text = openFileDialog1.FileName;
                }
            }
            string str = "Message";
            int iP = 0;
            private void btnStart_Click(object sender, EventArgs e)
            {
                
                IntPtr hnd = FindWindow(null, txtTitle.Text);//獲取句柄
                lblMessage.Text = hnd.ToString();
                iSeconds = int.Parse(txtSeconds.Text.Trim());
                myTimer.Interval = 1000 * iSeconds;  //1秒=1000毫秒
                myTimer.Enabled = true;
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                myTimer = new System.Windows.Forms.Timer();//實例化Timer定時器 
                myTimer.Tick += new EventHandler(CallBack2);//定時器關聯事件函數
            }
            private void CallBack2(object sender,EventArgs e)//定時器事件
            {
                keybd_event(Keys.Return, 0, 0, 0);//模擬鍵盤輸入:回車
            }
            private void btnStop_Click(object sender, EventArgs e)
            {
                myTimer.Enabled = false;//禁止定時器
            }
            private void btnStartBrowser_Click(object sender, EventArgs e)
            {
                if (string.IsNullOrEmpty(txtFile.Text)) return;
                try
                {
                    // 瀏覽器程序啟動線程
                    Proc = new System.Diagnostics.Process();
                    Proc.StartInfo.FileName = txtFile.Text;
                    Proc.StartInfo.Arguments = txtNetAddr.Text;  //瀏覽器打開URL參數
                    Proc.StartInfo.UseShellExecute = false;
                    Proc.StartInfo.RedirectStandardInput = true;
                    Proc.StartInfo.RedirectStandardOutput = true;
                    Proc.Start();
                }
                catch
                {
                    Proc = null;
                }
            }
        }
    }

    四、程序開發的一些其它思路及問題

    1.采用通過已知進程獲取主窗口句柄再遍歷子窗口句柄

    下面的代碼與本程序無關,都是片斷,請不要直接復制使用,主要提供有興趣作提升的人參考。

    if (string.IsNullOrEmpty(txtFile.Text)) return;
    try
    {
        Proc = new System.Diagnostics.Process();
        Proc.StartInfo.FileName =txtFile.Text;
        Proc.StartInfo.Arguments = txtNetAddr.Text;
        Proc.StartInfo.UseShellExecute = false;
        Proc.StartInfo.RedirectStandardInput = true;
        Proc.StartInfo.RedirectStandardOutput = true;
        Proc.Start();
        Thread.Sleep(2000);
    }
    catch
    {
        Proc = null;
    }
    if (Proc.MainWindowHandle != null)
    {
        //調用 API, 傳遞數據
        while (Proc.MainWindowHandle == IntPtr.Zero)
        {
            Proc.Refresh();
        }
    
        while (Proc.MainWindowHandle == IntPtr.Zero)
        {
            Proc.Refresh();
        }
        //執行代碼略
    }

    【問題說明】:這里的線程是Proc,但這個線程并不是主窗體,這個線程的主窗體句柄需要通過Proc.MainWindowHandle獲取。在使用過程中,針對自己開發的C#GUI程序,很容易獲取到,對【記事本】程序也正常,但在針對【Chrome】瀏覽器的時候,則結果要么是0,要么異常,在針對【FireFox】的時候有時能正常獲取,有時是異常。

    2.網上搜索C#操作API函數的東西很少,且不完整

    這里提供一個API函數的查詢網站,基本把API函數一網打盡了。http://pinvoke.net/#

    3.如果想查看Windows下的API函數,還可以使用工具:

    1.DLL函數查看器

    C#如何制作網站掛機程序

    2.DLL Export Viewer

    C#如何制作網站掛機程序

    4.獲取應用程序窗體的句柄、標題、類型的工具軟件

    這里可以使用VS環境(C++)中的Spy++。

    C#如何制作網站掛機程序

    以上是“C#如何制作網站掛機程序”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    精河县| 兰考县| 灵璧县| 西林县| 额尔古纳市| 西平县| 明光市| 丰城市| 肥西县| 靖州| 玉溪市| 潢川县| 奉贤区| 贵定县| 丰顺县| 壶关县| 永定县| 德阳市| 吉隆县| 大石桥市| 大足县| 同心县| 教育| 临江市| 盘锦市| 延津县| 霍邱县| 巴彦县| 准格尔旗| 沂水县| 武陟县| 会昌县| 东辽县| 马关县| 鹿邑县| 鄂伦春自治旗| 罗江县| 贵溪市| 伊宁市| 江西省| 德钦县|