我想在我的项目中包含一个来自后面代码的图像,以便允许我将图像设置为我的矩形的填充!我以这种方式插入图像:
<Rectangle Grid.Column="2" Grid.Row="2" Margin="4,4,4,4" Style="{DynamicResource rectangle_style}" >
<Rectangle.Fill>
<ImageBrush ImageSource="image.jpg" Stretch="UniformToFill"/>
</Rectangle.Fill>
</Rectangle>
要创建此背景图像,我必须通过右键单击文件将图像文件包含在项目中并设置“包含在项目中”。你能帮我在运行时包含来自后台代码的图像吗,因为我必须从文件夹中的大多数文件中设置图像!