资源简介
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图像目标识别新方法
相关资源
- pcbtemp电流计算软件
- 开源1A锂电池充电板TP4056原理图+PCB
- 开源电调BLHeli硬件PCB 4层板 2.5cm宽
- PCIe速度测试例程
- 基于xilinx FPGA的PCIe设计实战
- 基于PCIe的FPGA动态配置设计与实现
- 三星DDR800内存条PCB文件和原理图
- 实现小波变换例子 upcoef 函数
- NE555电路应用原理图及PCB
- 51单片机PCB设计图
- PC -- 单片机的串口数据传输系统设计
- VPC3_DPV1源代码,Profibus
- PC 串口调试软件
- Unity3D登录界面工程
- 单片机与PC机串口通讯仿真
- LPC线性预测分析及编码
- pctolcd2002完美版460701
- verilog的PCI源代码,非常详细,顶层模
- PC-1D太阳能仿真软件
- 基于JM20329的SATA转USB 1394
- 智能寻迹机器人源程序及pcb图
- unity3d反编译工具
- LDA 人脸识别
- 自制测量电容的PCB
- PC汇编编程钢琴程序
- 核主成分分析方法——特征提取,去
- DSP与PC通讯的几种方法
- 16*16点阵电路图附PCB
- OPC插件OPC Core Components 2.00 SDK 2.20
- pcsx2-0.9.8-r4600
评论
共有 条评论