私の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)
これで問題が解決します:)