0
我照着這個例子做了一個自定義的按鈕suface:如何設置高級樣式定製表面按鈕
<Button>
<Button.Template>
<ControlTemplate TargetType="Button">
<Grid>
<!-- my custom shape -->
<Polygon
Points="400,150 100,350 100,350, 500,350"
Stroke="Purple"
StrokeThickness="2"
Name="L1">
<Polygon.Fill>
<SolidColorBrush Color="Blue" Opacity="0.4"/>
</Polygon.Fill>
</Polygon>
<ContentPresenter />
</Grid>
</ControlTemplate>
</Button.Template>
</Button>
但與風格的一個問題 - 沒有觸摸時/ holded者/發佈行爲。你能給我一個線索怎麼做嗎?
感謝
這些頁面給出的例子並不是原始模板,請參見[這個問題](http://stackoverflow.com/questions/1559261/control-template-for-existing-controls-in-wpf)。 – 2012-03-27 10:04:44
@ H.B。謝謝,我糾正了。 – 2012-03-27 10:11:04