更改WPF工具栏面板的背景

时间:2008-12-23 15:41:25

标签: c# wpf toolbar

我正在尝试使用C#代码中的两个渐变背景重现Visual Studio样式工具栏。我可以看到如何在XAML中执行此操作,但如何在C#代码中钻取对象以更改其“MainPanelBorder”边框的背景?

由于

1 个答案:

答案 0 :(得分:1)

您需要使用

myToolbar.Template.FindName("MainPanelBorder", myToolbar) as Panel 
   //Or whatever the type of the item is in the template.