- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作叠加层。我这里有这段代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace HyperBox
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.TopMost = true; // make the form always on top
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; // hidden border
this.WindowState = FormWindowState.Maximized; // maximized
this.MinimizeBox = this.MaximizeBox = false; // not allowed to be minimized
this.MinimumSize = this.MaximumSize = this.Size; // not allowed to be resized
this.TransparencyKey = this.BackColor = Color.Red; // the color key to transparent, choose a color that you don't use
// Set the form click-through
int initialStyle = GetWindowLong(this.Handle, -20);
SetWindowLong(this.Handle, -20, initialStyle | 0x80000 | 0x20);
}
[System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]
static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern bool SetLayeredWindowAttributes(IntPtr hwnd, uint crKey, byte bAlpha, uint dwFlags);
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern int SetParent(int hWndChild, int hWndNewParent);
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
// draw what you want
e.Graphics.FillEllipse(Brushes.Blue, 30, 30, 100, 100);
}
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
它在窗体上绘制一个椭圆,该窗体是透明的并且始终在最上面。问题是它无法在全屏模式下工作。
我试过用这个
SetParent(this.handle, FindWindow(null, "<parent window title here>"));
除了我得到错误。有人可以帮忙吗?
最佳答案
我相信你的错误就在这里
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern int SetParent(int hWndChild, int hWndNewParent);
它需要两个类型为 IntPtr
而非 int
的参数,并且返回一个 IntPtr
而不是 int
。
MSDN提供更多信息。查看底部的用户贡献,了解一些很好的 C# 示例。
请记住 extern ,当与 DllImport
一起使用时,是对非托管代码的引用。 user32.dll 中名为 SetParent()
的方法没有接受两个 int
作为参数的定义。
因此该 block 应为:
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
关于c# - 将表单的父级设置为 "FindWindow",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13317585/
我正在尝试使用 JNA 将名为 MyWindowTitle 的窗口置于最前面。 import com.sun.jna.Native; import com.sun.jna.win32.StdCallL
我需要将服务应用程序与 vcl 应用程序进行通信。我的旧应用程序是一个控制台,控制台与 vcl 应用程序通信没有问题。现在我将控制台应用程序迁移到 srv 应用程序。旧的通信使用 FindWindow
如果我只知道窗口标题和类名的一部分,我如何获得窗口的描述符? 最佳答案 FindWindow() 需要完整的标题。在循环中使用 EnumWindows() 或 GetWindow() 来枚举所有可用的
我是 WindowsForms 的新手,正在构建一个小型示例应用程序。 我正在尝试构建一个将文本键入记事本窗口的应用程序,但在从 dll 导入时出现错误 FindWindow does not exi
我正在制作叠加层。我这里有这段代码 using System; using System.Collections.Generic; using System.Component
有没有办法通过不完整的名称找到窗口? 例如,您如何找到可以有多个标题名称的 Google Chrome 窗口? 像 Stack Overflow - Google Chrome 如果窗口始终与函数同名
我试图让一个函数找到一个窗口句柄。我已经通过以下方式多次这样做了: HWND windowHandle windowHandle = FindWindow(NULL, "NameOfWindowIAm
我有一个程序可以在 Windows 8.1 上打开一个窗口(实际上是一个视频游戏)。然后该程序以我编译的 C++ .DLL 的形式调用“扩展”。在该 DLL 中,我需要获取调用该 DLL 的程序(视频
我有 Windows 8 和 Visual Studio 2013。 #include #include using namespace std; int main() { HWND hWnd =
我只想知道为什么这段代码不起作用? HWND hWnds = FindWindow(NULL,(LPCTSTR)"Calculator"); 它总是为 hWnd 返回 NULL.... 知道如
我计划用 C++ 制作一个简单的训练控制台,但第一步我遇到了 FindWindow() 的问题 #include #include #include #include #include LP
从服务应用程序调用时,Windows API::FindWindow 函数失败。 GetLastError() 也返回 0(成功?)。这是一些特权\访问权限问题吗?你认为这是设计问题,我应该使用另一种
我正在编写的应用程序正在使用虚拟键盘。要显示、隐藏、调整大小或移动虚拟键盘,我首先需要通过调用 FindWindow 函数获取它的句柄,然后通过 PostMessage 向它发送一些消息。 由于我没有
示例 Outlook:它只有一个进程但可以有多个窗口(用户可以双击电子邮件在自己的窗口中打开它) 因此,我无法使用 Process.GetProcess() 遍历流程并比较标题。 FindWindow
有谁知道什么会导致 FindWindow 返回错误的函数: ALREADY_EXISTS error (183) 我能理解 FILE_NOT_FOUND (2) ,但为什么会返回 183 ? 最佳答案
这不是一个复杂的问题。我无法找到属于 iTunes 的句柄。但是虽然 iTunes 在后台运行,但它一直告诉我找不到该窗口。所以我继续检查我是否错过了输入窗口名称,但是 spy ++向我指出我使用了正
我正在尝试在 FM 中使用 findwindow api 调用,我可以在 VCL 应用程序中使用它查找,但不能在 FM 中使用。 这是我的代码 function WindowExists(ti
我创建了一个没有显示的窗口: int main() { CreateWindow("SysListView32","Geek",0, 0, 0, 0, 0,NULL, NULL, (HINST
这个问题在这里已经有了答案: Python Window Activation (7 个答案) 关闭 3 年前。 我正在尝试查找 Microsoft excel 是否有一个打开的窗口 import
所以我试图创建一个迷彩解锁器,但我从来没有遇到过通过 findwindow 获取进程 ID 的问题 但现在我试图找到 black ops 2 的 proc id 但窗口名称不起作用 使命召唤®:黑色行
我是一名优秀的程序员,十分优秀!