リサイズはクリックかドラッグ

CalculatorButton.xaml

CalculatorButton.xaml では、ドロップダウン電卓コントロール上のボタンの外観を定義します。

CalculatorButton.xaml の内容は以下のとおりです。

CalculatorButton.xaml の内容
XAML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <DataTemplate x:Key="CalculatorButtonContentTemplate">
        <TextBlock Text="{Binding}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
    </DataTemplate>
</ResourceDictionary>