<Button x:Name="btnProfilePicture" HorizontalAlignment="Center" Click="btnProfilePicture_Click">
<Button.Template>
<ControlTemplate>
<Ellipse x:Name="ellipsePicture" Fill="Turquoise" Width="150" Height="150" Stroke="White" StrokeThickness="10">
</Ellipse>
</ControlTemplate>
</Button.Template>
</Button >
我有一個橢圓形狀的按鈕,默認情況下顏色填充。 我想在運行時在代碼隱藏中將填充更改爲圖像。Windows運行時:如何在橢圓形狀按鈕中設置圖像?
我該怎麼做?
更多信息: 我試圖通過使用「ellipsePicture」名稱設置橢圓填充,但這個名稱不能在代碼後面引用,但我不知道原因。
Winforms或wpf? – progpow
這是一個Windows運行時/地鐵應用程序。 –
請查看這篇文章https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868203.aspx – Jerin