资源简介
unity PC端窗口最前,经历过各种项目真实好用,非常舒服,使用方便,一看就懂,不用再找了你想要的就在这里
代码片段和文件信息
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
//using System.Windows.Forms;
public class C
{
public delegate bool WNDENUMPROC(IntPtr hwnd uint lParam);
[DllImport(“user32.dll“ SetLastError = true)]
public static extern bool EnumWindows(WNDENUMPROC lpEnumFunc uint lParam);
[DllImport(“user32.dll“ SetLastError = true)]
public static extern IntPtr GetParent(IntPtr hWnd);
[DllImport(“user32.dll“)]
public static extern uint GetWindowThreadProcessId(IntPtr hWnd ref uint lpdwProcessId);
[DllImport(“kernel32.dll“)]
public static extern void SetLastError(uint dwErrCode);
public static IntPtr GetProcessWnd()
{
IntPtr ptrWnd = IntPtr.Zero;
uint pid = (uint)Process.GetCurrentProcess().Id; // 当前进程 ID
bool bResult = EnumWindows(new WNDENUMPROC(delegate (IntPtr hwnd uint lParam)
{
uint id = 0;
if (GetParent(hwnd) == IntPtr.Zero)
{
GetWindowThreadProcessId(hwnd ref id);
if (id == lParam) // 找到进程对应的主窗口句柄
{
ptrWnd = hwnd; // 把句柄缓存起来
SetLastError(0); // 设置无错误
return false; // 返回 false 以终止枚举窗口
}
}
return true;
}) pid);
return (!bResult && Marshal.GetLastWin32Error() == 0) ? ptrWnd : IntPtr.Zero;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1625 2016-11-10 10:59 ProgramBefore\C.cs
文件 262 2017-09-22 15:34 ProgramBefore\C.cs.me
文件 3001 2018-05-09 20:14 ProgramBefore\WindowActive.cs
文件 262 2017-09-22 15:34 ProgramBefore\WindowActive.cs.me
文件 47 2017-09-25 13:16 StreamingAssets\Setting.xm
目录 0 2018-05-09 20:14 ProgramBefore
目录 0 2018-08-30 10:02 StreamingAssets
----------- --------- ---------- ----- ----
5197 7
- 上一篇:ad的封装集成库,比较全的
- 下一篇:SAR图像目标识别新方法
相关资源
- Benz EWA net wis epc keygen
- LitJson修改版,Unity支持float数据类型
- LM1117_3.3pcb封装
- IBM_PC汇编语言程序设计第二版(沈美
- BC95原理图和PCB
- Unity图片切换轮播功能
- STM32F103RBT6 STM32最小系统 PCB文件+电路
- Intel 硬件设计培训资料
- Main.unity
- PrintImage.exe是一个调用打印机后台打印
- 超声波检测电路原理图pcb
- Altium Designer_天线原理图库PS:自己花
- hx-108收音机原理图和pcb版图
- ICT新手不得不看的小技巧
- 声控LED智能灯
- pca9685+stm32f103c8t6
- 关于pcf8591ad转换的iic读取数据模块
- 气压高度计SPL06封装
- IST8310三轴磁力计PCB封装
- 基于LPC213X/LPC214X的简易信号发生器
- FDC2214原理图及PCB
- 五向开关pcb封装
- unity汉化包,中文补丁
- pwpack2008_pck解包
- 收藏奉献_微机磁盘操作系统10号:P
- 收藏奉献_微机磁盘操作系统06号:P
- 收藏奉献_微机磁盘操作系统01号:P
- 开源1A锂电池充电板TP4056原理图PCB.r
- CYC.unity
- PCA,KPCA LDA算法
评论
共有 条评论