wpf mvvm模式下的image绑定
Posted 追风呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf mvvm模式下的image绑定相关的知识,希望对你有一定的参考价值。
view文件
<Image Grid.Column="2"
Width="48"
Height="64"
Stretch="Fill"
Source="{Binding CaseCoverImage}"
UseLayoutRounding="True" />
model文件
public BitmapImage CaseCoverImage
{
get { return this.GetValue(c => c.CaseCoverImage); }
set { this.SetValue(c => c.Image, CaseCoverImage); }
}
viewmodel文件
BitmapImage defImage = new BitmapImage();
defImage.BeginInit();
defImage.UriSource = new Uri("/VIS3000V4;component/Images/test/大客车.jpg", UriKind.Relative);
defImage.EndInit();
CaseCoverImage=defImage ;
以上是关于wpf mvvm模式下的image绑定的主要内容,如果未能解决你的问题,请参考以下文章
WPF DataGridTemplateColumn 与 ComboBox 绑定(MVVM 模式)