在窗体上绘制半透明叠加图像,其中包含一些控件,使其所有子控件都可见,但不能单击它们。它应该就像我们通过一些半透明的黑色镜子看到一些东西。
我尝试过使用透明控件。这是对控件进行子类化控制并在该控件上绘制图像,但所有控件都完全可见。
答案 0 :(得分:26)
这将需要您在现有表单上显示的另一个表单。其Opacity属性可以创建预期的效果。在项目中添加一个新类并粘贴下面显示的代码。调用Close()方法再次删除效果。
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
class Plexiglass : Form {
public Plexiglass(Form tocover) {
this.BackColor = Color.DarkGray;
this.Opacity = 0.30; // Tweak as desired
this.FormBorderStyle = FormBorderStyle.None;
this.ControlBox = false;
this.ShowInTaskbar = false;
this.StartPosition = FormStartPosition.Manual;
this.AutoScaleMode = AutoScaleMode.None;
this.Location = tocover.PointToScreen(Point.Empty);
this.ClientSize = tocover.ClientSize;
tocover.LocationChanged += Cover_LocationChanged;
tocover.ClientSizeChanged += Cover_ClientSizeChanged;
this.Show(tocover);
tocover.Focus();
// Disable Aero transitions, the plexiglass gets too visible
if (Environment.OSVersion.Version.Major >= 6) {
int value = 1;
DwmSetWindowAttribute(tocover.Handle, DWMWA_TRANSITIONS_FORCEDISABLED, ref value, 4);
}
}
private void Cover_LocationChanged(object sender, EventArgs e) {
// Ensure the plexiglass follows the owner
this.Location = this.Owner.PointToScreen(Point.Empty);
}
private void Cover_ClientSizeChanged(object sender, EventArgs e) {
// Ensure the plexiglass keeps the owner covered
this.ClientSize = this.Owner.ClientSize;
}
protected override void OnFormClosing(FormClosingEventArgs e) {
// Restore owner
this.Owner.LocationChanged -= Cover_LocationChanged;
this.Owner.ClientSizeChanged -= Cover_ClientSizeChanged;
if (!this.Owner.IsDisposed && Environment.OSVersion.Version.Major >= 6) {
int value = 1;
DwmSetWindowAttribute(this.Owner.Handle, DWMWA_TRANSITIONS_FORCEDISABLED, ref value, 4);
}
base.OnFormClosing(e);
}
protected override void OnActivated(EventArgs e) {
// Always keep the owner activated instead
this.BeginInvoke(new Action(() => this.Owner.Activate()));
}
private const int DWMWA_TRANSITIONS_FORCEDISABLED = 3;
[DllImport("dwmapi.dll")]
private static extern int DwmSetWindowAttribute(IntPtr hWnd, int attr, ref int value, int attrLen);
}
答案 1 :(得分:3)
创建一个layered window,它保存在主表单之上并与其位置同步。您可以使用32位RGBA图像更改分层窗口的alpha,以获得所需的效果。
有一篇不错的代码项目文章向您展示如何执行此操作here。
答案 2 :(得分:0)
我认为更简单的方法是在您设置其不透明度的位置放置一个透明的Label控件,并禁用其AutoSize功能,并将标签大小调整为您想要覆盖的表面大小。
然后,当您想要覆盖标签时,将其发送到前面(以编程方式)并使其可见。如果要禁用叠加层,请将其发送到后面并使其不可见。
我用一个覆盖整个表单的文本标签做了这个。我认为如果不是设置Label控件的Text属性,而是设置半透明(PNG)图像,它的工作原理会相同。