WPF 設定按鈕Button的背景圖(Content或Background下的兩種方法設定Button的向量圖背景,為按鈕新增向量圖背景)
阿新 • • 發佈:2019-02-16
用Blend畫好的向量圖:
新增到Button中去。
方法一:(Backgroud,缺點是有條紋)
<Button Canvas.Top="48" Canvas.Left="62" Width="527" Height="691" BorderThickness="0"> <Button.Background> <VisualBrush Visual="{StaticResource Config.StudyProtocol.PersonGridBackground691x530}"/> </Button.Background> </Button>
方法二、(Content,去條紋)
<Button Width="527" Height="691" Canvas.Top="48" Canvas.Left="62" Content="{StaticResource Config.StudyProtocol.PersonGridBackground691x530}" BorderThickness="0"/>
總結:儘量採用方法2