如果我有一个XAML元素:
self.img.Source = ?
我需要:
int round_near(float b)
C#逻辑没有帮助。
答案 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)