このようなボタンを作成する最良の方法は何ですか?
ボタンにはアクションと説明が含まれています...
<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>
与える