我正在尝试使用C#代码中的两个渐变背景重现Visual Studio样式工具栏。我可以看到如何在XAML中执行此操作,但如何在C#代码中钻取对象以更改其“MainPanelBorder”边框的背景?
由于
答案 0 :(得分:1)
您需要使用
myToolbar.Template.FindName("MainPanelBorder", myToolbar) as Panel
//Or whatever the type of the item is in the template.