创建这样的按钮的最佳方法是什么?
按钮包含操作和描述...
<Button>
<StackPanel>
<TextBlock Text="primary text" />
<TextBlock Text="Lorem ipsum..." />
</StackPanel>
</Button>
这样的事情会非常接近
<Button HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20" Background="Black">
<Button.Content>
<Border BorderThickness="3" BorderBrush="White" Margin="5">
<StackPanel>
<TextBlock FontWeight="Bold" Foreground="White" Margin="3">primary text</TextBlock>
<TextBlock Foreground="LightGray"
Margin="3">Lorem ipsum dolor sit amet</TextBlock>
</StackPanel>
</Border>
</Button.Content>
</Button>
给