如何在不透明度为 0.3 的 Windows 窗体上绘制零不透明度橡皮筋?(橡皮筋是根据微软的例子制作的
更新:
我需要那个橡皮筋来做面具之类的东西。如果您使用 Jing 或任何其他屏幕截图工具,当您尝试制作屏幕截图时,您将看到我需要做的事情:屏幕变为半透明,当您进行选择时,您将看到 0 不透明度选择
如何在不透明度为 0.3 的 Windows 窗体上绘制零不透明度橡皮筋?(橡皮筋是根据微软的例子制作的
更新:
我需要那个橡皮筋来做面具之类的东西。如果您使用 Jing 或任何其他屏幕截图工具,当您尝试制作屏幕截图时,您将看到我需要做的事情:屏幕变为半透明,当您进行选择时,您将看到 0 不透明度选择
这是你要找的机器人吗?
public Form1()
{
InitializeComponent();
DoubleBuffered = true;
}
bool mouseDown = false;
Point mouseDownPoint = Point.Empty;
Point mousePoint = Point.Empty;
protected override void OnMouseDown(MouseEventArgs e)
{
base.OnMouseDown(e);
mouseDown = true;
mousePoint = mouseDownPoint = e.Location;
}
protected override void OnMouseUp(MouseEventArgs e)
{
base.OnMouseUp(e);
mouseDown = false;
}
protected override void OnMouseMove(MouseEventArgs e)
{
base.OnMouseMove(e);
mousePoint = e.Location;
Invalidate();
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
if (mouseDown)
{
Region r = new Region(this.ClientRectangle);
Rectangle window = new Rectangle(
Math.Min(mouseDownPoint.X, mousePoint.X),
Math.Min(mouseDownPoint.Y, mousePoint.Y),
Math.Abs(mouseDownPoint.X - mousePoint.X),
Math.Abs(mouseDownPoint.Y - mousePoint.Y));
r.Xor(window);
e.Graphics.FillRegion(Brushes.Red, r);
Console.WriteLine("Painted: " + window);
}
}
绘制时需要使用部分不透明的颜色:
链接文章中的更新行,在MyDrawReversibleRectangle
方法中:
ControlPaint.DrawReversibleFrame( rc, Color.FromArgb(80, 120, 120, 120), FrameStyle.Dashed );
我使用了@Dearmash 在我的开源应用程序 BugTracker.NET 附带的屏幕捕获实用程序中提供的代码。该应用程序不是很大,因此如果您正在做屏幕截图,它可能是一个很好的起点。更多信息在这里:
http://ifdefined.com/blog/post/Screen-capture-utility-in-C-NET.aspx
只需使用一个额外的表单,而不在任务栏或其他表单选项中显示它。设置仅显示橡皮筋的窗体区域。并确保两个窗口都像一个窗口一样(移动、关闭……)。我知道这不是一种优雅的方式,但只要稍加努力就可以产生良好的效果。您可以确保表单在表单层次结构的顶部并且仍然没有获得焦点。
通过将区域设置为好,所有事件都将转到另一种形式。
这就是我解决等效问题的方式(我并不是说这是一个好的解决方案,但它确实有效)