我需要将 DrawingBrush 传递给第三方 DLL 中的方法,该方法在应用程序的某处显示图像。我不能修改这个。
我需要从 BMP 图像创建 DrawingBrush。我试过这个例子,但它不起作用。
任何帮助,将不胜感激。
我需要将 DrawingBrush 传递给第三方 DLL 中的方法,该方法在应用程序的某处显示图像。我不能修改这个。
我需要从 BMP 图像创建 DrawingBrush。我试过这个例子,但它不起作用。
任何帮助,将不胜感激。
它应该工作。
<Window x:Class="WpfApplication9.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" >
<Rectangle Height="100" Width="100">
<Rectangle.Fill>
<DrawingBrush>
<DrawingBrush.Drawing>
<DrawingGroup>
<GeometryDrawing>
<GeometryDrawing.Brush>
<ImageBrush ImageSource="IC23839.jpg" />
</GeometryDrawing.Brush>
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="0,0 100,100" />
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingBrush.Drawing>
</DrawingBrush>
</Rectangle.Fill>
</Rectangle>