IronPython& WPF。如何在代码中运行时更改Image.Source?

时间:2015-07-08 16:56:04

标签: wpf python-3.x ironpython

如果我有一个XAML元素:

self.img.Source = ?

我需要:

int round_near(float b)

C#逻辑没有帮助。

1 个答案:

答案 0 :(得分:0)

许多方法之一是从Uri创建一个BitmapImage:

from System import Uri
from System.Windows.Media.Imaging import BitmapImage

uri = Uri("D:\\test.gif")
self.img.Source = BitmapImage(uri)