程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#通過API實現跨進程得到浏覽器對象

C#通過API實現跨進程得到浏覽器對象

編輯:C#入門知識

C# 源代碼,通過API實現跨進程得到浏覽器對象,然後就可以進行下一步操作。

 
1 using System;
 2 using System.Runtime.InteropServices;
 3 using mshtml;
 4 
 5 class Win32API {
 6     [DllImport("user32.dll", EntryPoint = "FindWindow")]
 7     public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
 8     [DllImport("user32.dll", EntryPoint = "FindWindowEx")]
 9     public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
10     [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
11     public static extern uint RegisterWindowMessage(string lpString);
12     [DllImport("oleacc.dll", PreserveSig = false)]
13     [return: MarshalAs(UnmanagedType.Interface)]
14     public static extern object ObjectFromLresult(UIntPtr lResult, [MarshalAs(UnmanagedType.LPStruct)] Guid refiid, IntPtr wParam);
15     [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
16     public static extern IntPtr SendMessageTimeout(IntPtr hWnd, uint Msg, UIntPtr wParam, IntPtr lParam, SendMessageTimeoutFlags fuFlags, uint uTimeout, out UIntPtr lpdwResult);
17 
18     public enum SendMessageTimeoutFlags : uint {
19         SMTO_NORMAL = 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved