View 有一个按钮和 Image 控件。我已将按钮命令绑定到 ViewModel 上的 delegateCommand,它会打开一个文件对话框供用户选择 Image。View 的上下文“对象”包含一个属性“Icon”,它是键入字节[]。我已将图标绑定到图像控件。问题是如何在图像控件上显示选定的图像文件?
xml:
<Button x:Name="dlgIconbtn" Command="{Binding OpenFileCommand}" Content="Choose Icon" MaxWidth="120" Grid.Row="3" Grid.Column="1" Margin="5"/>
<Image Grid.Row="3" Margin="5" Grid.Column="3" Source="{Binding AppItem.Icon,Converter={StaticResource imgConverter}}"
Width="25" Height="25"/>