我在vb编程中很新..
我的 Form.xaml 中有这个代码片段
<MenuItem Name="testItem" Background="Gray" Width="37" >
<MenuItem.Icon>
<Image Source="Image\test.png" Width="35" Height="35"/>
</MenuItem.Icon>
</MenuItem>
在我的 Form.xaml.vb 中如何访问 testItem 的背景?我做了类似的事情
testItem.Background = Colors.Blue
但它不起作用..