1

我在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

但它不起作用..

4

1 回答 1

0

Menu 的 Background 属性需要一个 Brush,而不是 Color。您可以像这样使用 SolidColorBrush:

testItem.Background = New SolidColorBrush(Colors.Red)
于 2012-12-11T12:31:20.610 回答