gpt4 book ai didi

c# - 如何为我的矩形设置不透明度(drawingcontext)

转载 作者:行者123 更新时间:2023-11-30 20:31:14 25 4
gpt4 key购买 nike

这是我的矩形

protected void DrawRectangle(DrawingContext dc, Point point)
{
DrawingVisual drawingVisual = new DrawingVisual();
using (DrawingContext drawContext = drawingVisual.RenderOpen())
{
Pen drawingPen = new Pen(ErrorBarBrush, ErrorBarThickness);
dc.DrawRectangle(Brushes.Red,
new Pen(Brushes.Black, 5),
new Rect(new Point(point.X - 50, point.Y + 50),
new Point(point.X + 50, point.Y - 50)));
dc.PushOpacity(2);

}
}

所以我的问题是如何设置不透明度,这是正确的方法吗?

最佳答案

(这是改变矩形的不透明度)

不是将 Brushes.Red 传递到 Rectangle 中,而是创建一个新的 SolidColorBrush 并设置传递到 Rectangle 中的 SolidColorBrush 的不透明度

SolidColorBrush rectBrush = new SolidColorBrush(Colors.Red);
rectBrush.Opacity = 0.5; // or whatever

dc.DrawRectangle(rectBrush, ...

您需要为 Pen 做类似的事情

关于c# - 如何为我的矩形设置不透明度(drawingcontext),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43494844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com