我正在尝试为 WP7 silverlight 中的网格控件设置背景,我需要以编程方式进行,而不是在设计中。
我试过类似的东西:
ContentPanel.Background = new BitmapImage(new Uri("Images\Backgrounds\with box\13.jpg", UriKind.Relative));
但是,当然,我得到了一个错误,因为在右手我们应该有 type SolidColorBrush
。
有没有办法做到这一点?
谢谢..
我正在尝试为 WP7 silverlight 中的网格控件设置背景,我需要以编程方式进行,而不是在设计中。
我试过类似的东西:
ContentPanel.Background = new BitmapImage(new Uri("Images\Backgrounds\with box\13.jpg", UriKind.Relative));
但是,当然,我得到了一个错误,因为在右手我们应该有 type SolidColorBrush
。
有没有办法做到这一点?
谢谢..
我首先建议您使用画布而不是网格。您可以通过删除 Grid 并通过 Toolbox -> Drag and Drop 插入 Canvas 来做到这一点。
然后,您可以像这样简单地使用代码:
ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = new BitmapImage(new Uri("url", UriKind.Relative));
CanvasName.Background = imageBrush;
这会将背景更改为您想要的任何内容。
希望有帮助。