我添加了一个资源字典供我的 tabcontrol 使用。每个 tabitem 的右侧都有一个在资源字典中定义的小框。
我想根据每个 tabitem 中的复选框更改颜色。目前,如果我在所有 tabitems 后面的代码中执行此操作,则会改变颜色
LinearGradientBrush lgbrush = (LinearGradientBrush)(this.FindResource("TabItemSideBackground")); lgbrush.GradientStops[0].Color = Colors.AntiqueWhite; lgbrush.GradientStops[1].Color = Colors.Red; lgbrush.GradientStops[2].Color = Colors.OrangeRed;
任何帮助是极大的赞赏。谢谢你。