从代码隐藏中获取值

时间:2016-02-12 08:36:28

标签: c# wpf

我在后面的代码(xaml.cs)中有一个名为path的变量(其值为" / relative/somefolder/myimg.png" )想要使用此变量在XAML(UI)中设置图像源的值。谁能告诉你怎么做?

2 个答案:

答案 0 :(得分:2)

你可以直接从代码隐藏设置值(比如已经提到的Joh。)或者你可以查看数据绑定以直接从XAML设置它。
Data Binding WPF

答案 1 :(得分:1)

在代码隐藏中你可以这样做:

Uri path=new Uri(yourPath,UriKind.RelativeOrAbsolute);
yourImage.Source = new BitmapImage(path);