-1
我創建了一個帶有圓角和白色背景的Button
。但我需要周圍的按鈕邊框看起來像按鈕,在附截圖:添加帶有WPF邊框的按鈕
我開發這個代碼的按鈕:
<Button Cursor="Hand" x:Name="login" BorderBrush="Transparent" Background="White" Foreground="Black" FontSize="24" Margin="42,305,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"
Content="LOG IN" Grid.Column="1" FontWeight="Bold" Click="login_Click" RenderTransformOrigin="0.844,0.439" Width="101">
<Button.Effect>
<DropShadowEffect BlurRadius="15" ShadowDepth="0"/>
</Button.Effect>
<Button.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="10"/>
<Setter Property="Padding" Value="10,2,10,3"/>
<Setter Property="Background" Value="White"/>
</Style>
</Button.Resources>
</Button>
請給你的建議。
尼斯suggestion..thanks @ MM8 –
那麼,爲什麼你基本上覆制我的答案嗎?如果您的問題已解決,請接受。 – mm8
部分你發佈的答案是有用的,所以只有投了你的答案。我開發併發布了完整的答案。 –