当我尝试添加代码以在VB.net中的wpf应用程序中为按钮添加图像时,我收到此错误:“值不在预期范围内”。我似乎不知道该做什么或出了什么问题?以下是给出错误的XAML代码:
<ToolBarTray Height="33" Name="ToolBarTray1" VerticalAlignment="Top">
<ToolBar Background="Cyan" Height="33" Band="1" BandIndex="1" ToolBarTray.IsLocked="True">
<Button><Image Source="new.bmp"/></Button>
</ToolBar>
</ToolBarTray>
显示错误的带下划线的部分是<Image Source="new.bmp"/>
。有人告诉我什么是不对的。