<Style x:Key="abc" TargetType="{x:Type Window}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Window}">
<button x:name="btn">my button!!</button>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
...
<Window ... Style="{StaticResource styleMainWindow}">
ボタンを使用するにはどうすればいいですか?btn
?テンプレートでコントロールを使用するにはどうすればいいですか?
があなたの期待に来て、
MessageBox.Show(this.btn1.name);
は、コンパイル時にエラーが発生しました。また、btn1はintelisenseに現れなかった。
無意味なコントロールまたはUserControlを作成しようとしていますか?ありがとう。 –