以编程方式将按钮的背景设置为图像

时间:2012-01-20 10:25:01

标签: windows-phone-7 button imagesource

如何以编程方式将按钮的背景设置为图像? 我知道如何在XAML中执行此操作,但在代码中,我一直卡住,我尝试了

Button.Background = new ImageBrush{ ImageSource = "source" };

然后我得到错误,该字符串无法转换为ImageSource。

1 个答案:

答案 0 :(得分:13)

Try:
Button.Background = new ImageBrush{ ImageSource = new BitmapImage(new Uri(imgPath, UriKind.Relative)) };