4

假设我在 C# 中有一个普通的窗口。它没有边框样式,因此无法移动或调整大小等。我将如何定位该窗口以使其显示在与桌面相同的级别或更高级别?

像小部件或雨量计皮肤。有任何想法吗?

4

1 回答 1

8

如果我理解正确并且您想在桌面上画画,那么这可能会有所帮助: 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();

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

于 2009-12-27T15:45:59.623 回答