C# 在桌面上放置窗口

发布于 2024-08-15 16:09:03 字数 103 浏览 4 评论 0原文

假设我有一个用 C# 编写的普通窗口。它没有边框样式,因此无法移动或调整大小等。我如何定位该窗口,使其与桌面或上面的桌面处于同一级别?

就像一个小部件或雨计皮肤。有什么想法吗?

Lets say I have a plain window in C#. It has no border styles so it cannot be moved or resized etc. How would i position that window so it appears at the same level as the desktop or one above?

Like a widget or a rainmeter skin. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

謌踐踏愛綪 2024-08-22 16:09:03

如果我理解正确并且您想在桌面上绘图,基本上,那么这可能会有所帮助: http://www.neowin.net/forum/lofiversion/index.php/t293883.html

[DllImport("user32.dll", CharSet=CharSet.Auto)]
 public static extern IntPtr FindWindow(
  [MarshalAs(UnmanagedType.LPTStr)] string lpClassName,
  [MarshalAs(UnmanagedType.LPTStr)] string lpWindowName);
[DllImport("user32.dll")]
 public static extern IntPtr SetParent(
  IntPtr hWndChild,      // handle to window
  IntPtr hWndNewParent   // new parent window
  );


IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("ProgMan", null);
SetParent(hwndf,hwndParent);
this.TopMost = false;

这会将您的表单重新设置为桌面本身的子窗口。

在多次阅读代码后,我不确定他们为什么使用 FindWindow() 来查找“ProgMan”而不是使用,

[DllImport("user32.dll")]
static extern IntPtr GetDesktopWindow();

但到目前为止我自己还没有尝试过。

If I understand you correctly and you want to draw on the desktop, basically, then this might help: http://www.neowin.net/forum/lofiversion/index.php/t293883.html

[DllImport("user32.dll", CharSet=CharSet.Auto)]
 public static extern IntPtr FindWindow(
  [MarshalAs(UnmanagedType.LPTStr)] string lpClassName,
  [MarshalAs(UnmanagedType.LPTStr)] string lpWindowName);
[DllImport("user32.dll")]
 public static extern IntPtr SetParent(
  IntPtr hWndChild,      // handle to window
  IntPtr hWndNewParent   // new parent window
  );


IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("ProgMan", null);
SetParent(hwndf,hwndParent);
this.TopMost = false;

That would reparent your form as a child window of the desktop itself.

After reading the code some more times I'm not sure why they use FindWindow() looking for "ProgMan" instead of using

[DllImport("user32.dll")]
static extern IntPtr GetDesktopWindow();

but I didn't give it a try myself so far.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文