MESCIUS InputMan for WPF 3.0J > InputMan for WPF の使い方 > テーマテンプレートを使用する > テーマテンプレートのカスタマイズ > 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>