我是 Helix 的新手,并试图用 C# 创建一个在运行时透明的简单盒子。我可以看到盒子透明显示,但盒子上没有颜色。我不知道我在我的一小段代码中是否做错了什么:
Objects = new ObservableCollection<Visual3D>();
Objects.Add(new GridLinesVisual3D());
var color = Color.FromArgb(0x80, Colors.Red.R, Colors.Red.G, Colors.Red.B);
var b = new BoxVisual3D()
{
Width = 10,
Length = 10,
Height = 10,
};
var brush = new SolidColorBrush();
brush.Color = color;
b.Fill = brush;
Objects.Add(b);
非常感谢您提前。此致