1
我想在我的Polygon
中插入Image
,可能位於Polygon
的中心。可能嗎?我能怎麼做?將圖像作爲多邊形內容插入
我想在我的Polygon
中插入Image
,可能位於Polygon
的中心。可能嗎?我能怎麼做?將圖像作爲多邊形內容插入
您可以使用ImageBrush
作爲多邊形的Fill
。就像這樣:
<Polygon.Fill>
<ImageBrush ImageSource="sampleImages\berries.jpg"
AlignmentX="..." AlignmentY="..." />
</Polygon.Fill>
可能是「點」屬性幫助您:
<Polygon Points="40,0 150,100 10,100" >
<Polygon.Fill>
<ImageBrush ImageSource="C:\Users\Public\Pictures\Sample Pictures\Penguins.jpg" Stretch="Uniform" AlignmentX="Left" />
</Polygon.Fill>
</Polygon>
謝謝,但我不想改變多邊形填充。 – Nick
然後,您可以使用「PolygonGeometry」剪輯圖像。參見[在WPF中裁剪或裁剪](http://www.c-sharpcorner.com/uploadfile/raj1979/cropping-or-clipping-in-wpf/)。有關集中的幫助,請參閱http://stackoverflow.com/questions/2208992/how-to-center-an-element-in-wpf-canvas –
您可以告訴我如何用示例剪輯圖像? – Nick