默认 TabItem 背景颜色
如果选项卡中未设置某些内容,我想设置 TabItem 标题 (TabItem.Background) 的背景颜色。为了实现此目的,我在 ViewModel 中有一个 Brush 属性,该属性绑定到 TabItem 的 Background 属性。但是,我不确定如何获取/创建默认的 TabItem 背景画笔。
public Brush TabItemBrush
{
get
{
return IsContentSet ? DefaultTabItemBrush : Brushes.LightSkyBlue;
}
}
<TabItem Header="Some Header" Background="{Binding TabItemBrush, Mode=OneWay}">
我希望 DefaultTabItemBrush 画笔与其他 TabItem 相匹配,因此如果主题更改,所有 TabItem 看起来仍然相同。
SystemColors 中是否提供默认画笔?
使用 C#/.NET 3.5
I want to set the background color of a TabItem Header (TabItem.Background) if certain content is not set in the tab. To accomplish this, I have a Brush property in my ViewModel that is bound to the Background property of the TabItem. However, I'm not sure how to get/create the default TabItem background brush.
public Brush TabItemBrush
{
get
{
return IsContentSet ? DefaultTabItemBrush : Brushes.LightSkyBlue;
}
}
<TabItem Header="Some Header" Background="{Binding TabItemBrush, Mode=OneWay}">
I would like the DefaultTabItemBrush brush to match the other TabItems so if the Theme changes all the TabItems will still look the same.
Is the default brush available in SystemColors?
Using C# / .NET 3.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用了 在WPF中,如何获取当前主题的按钮背景?
然后在我的代码中看起来像这样:
当IsContentSet == true时它将使用默认画笔,当在这种情况下,其他笔刷为 false LightSkyBlue
I ended up using the solution from In WPF, how do I get the current theme's button background?
Then in my code looks something like:
When IsContentSet == true it will use the default brush and when false some other brush in this case LightSKyBlue