我正在尝试像这个问题一样在 c#中设置TreeViewItem
->的属性。在我尝试在我的. 里面有物体,但对于我的生活,我无法设置颜色或任何东西。这似乎是不一致的,因为我可以通过简单地说,添加到 a中。StackPanel
Background
Border
Borders
Background
Content
Label
Content = "Title"
无论如何,这是我的代码:
public static TreeViewItem childNode = new TreeViewItem() //Child Node
{
Header = new StackPanel
{
Orientation = Orientation.Horizontal,
Children =
{
new Border {
Width = 12,
Height = 14,
Background = ? //How do I set the background?
},
new Label {
Content = "Child1"
}
}
}
};
PS - 我在尝试添加时遇到同样的问题BorderBrush
谢谢!