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