在我的 windows phone 应用程序中,我有一个矩形Border
. 我想在边框的中心添加图像。如何使用C#
?
编辑 此代码不显示任何图像。知道为什么吗?
Border b = (Border)FindName("border"+nom);
if (move == 1)
{
var bi = new BitmapImage
{
UriSource = new Uri("/Images/smiley1.png", UriKind.Relative)
};
b.Child = new Image { Source = bi };
}
编辑 2
显然,正确的语法是UriSource = new Uri("/BoxIt;component/Images/smiley1.png", UriKind.Relative)
这解决了问题:)