Helix 3D - 透明无色

时间:2013-05-01 12:20:52

标签: wpf colors 3d transparent helix-3d-toolkit

我是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);

非常感谢您提前。 最好的问候

0 个答案:

没有答案