在我的Windows Phone應用程序中,我有一個矩形Border
。我想在邊框的中心添加圖片。如何使用C#
做到這一點?如何將圖像添加到WP7中的邊框對象
編輯 此代碼不顯示任何圖像。任何想法爲什麼?
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)
這解決了問題:)
善意地寫出反對背後的原因 –
這裏的負面投票可能意味着這個人覺得你沒有做太多的研究或花費足夠的努力。如果你發佈一些代碼並告訴我們你有多遠,你會更有可能獲得幫助。 – davehale23
@ davehale23我沒有添加任何代碼的原因是我確定它只是一行代碼,但我無法弄清楚如何。 –