[原創]C#應用WindowsApi實現尋找(FindWindowEx)文字框(TextBox、TextEdit)。

來源:互聯網
上載者:User

標籤:

/// <summary>
/// 擷取文字框控制項
/// </summary>
/// <param name="hwnd">文字框所在父視窗</param>
/// <param name="text">文字框文本,null為搜尋所有</param>
/// <param name="iLevel">父視窗上第幾個文字框</param>
/// <returns>文字框控制代碼</returns>
private IntPtr GetTextEdit(IntPtr hwnd,string text, int iLevel)
{
IntPtr iEditor = IntPtr.Zero;
IntPtr iCode = IntPtr.Zero;
if (hwnd != IntPtr.Zero)
{
for (int i = 0; i < iLevel; i++)
{
iCode = WindowsApi.FindWindowEx(hwnd, iCode, "WindowsForms10.Window.b.app.0.bf7771_r13_ad1", "");
if (iCode == IntPtr.Zero)
break;
}
if (iCode != IntPtr.Zero)
iEditor = WindowsApi.FindWindowEx(iCode, IntPtr.Zero, "WindowsForms10.EDIT.app.0.bf7771_r13_ad1", text);
}
return iEditor;
}

說明:

"WindowsForms10.EDIT.app.0.bf7771_r13_ad1" 文字框類型,可以通過Spy++工具查看,如

 

文字框都有一個父類,如代碼中"WindowsForms10.EDIT.app.0.bf7771_r13_ad1",即為文字框的父類類型,要先找到第幾個文字框的父類,再從父類中尋找當前文字框。

 

[原創]C#應用WindowsApi實現尋找(FindWindowEx)文字框(TextBox、TextEdit)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.