当我尝试添加代码以在 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"/>
。有人告诉我什么是不对的。