0
スタックパネル(コントロールテンプレート)内のボタンにアクセスするには?私はそれらのボタンを単一のボタンオブジェクトとして作らなければならないことを意味します。Wpfのアクセス制御テンプレートコントロール?
<Window.Resources>
<ControlTemplate TargetType="Button" x:Key="temp" x:Name="hotel">
<StackPanel x:Name="service">
<Button Content="1" Width="30" Height="30" Name="tempbtn1"/>
<Button Content="2" Width="30" Height="30" Name="tempbtn2"/>
<Button Content="3" Width="30" Height="30" Name="tempbtn3"/>
<Button Content="4" Width="30" Height="30" Name="tempbtn4"/>
</StackPanel>
</ControlTemplate>
</Window.Resources>
<Grid>
<TextBox x:Name="txttype" TextWrapping="Wrap" Text="Room Type" Width="120" Height="30" Margin="10 0 0 0"/>
<Button x:Name="button" Content="Submit" HorizontalAlignment="Left" Margin="9,0,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
<StackPanel Orientation="Horizontal" x:Name="Deluxe">
<Button x:Name="btn1" Content="1" Width="60" Height="60" Template="{StaticResource temp}"/>
<Button Margin="10 0 0 0" Content="2" x:Name="btn2" Width="60" Height="60" Template="{StaticResource temp}"/>
</StackPanel>
</Grid>
あなたが達成するために何をしようとしていますか? 1つのボタンを4つのボタンに分割することは、私には意味をなさない。あなた自身を説明してください – lokusking
もし私がテキストボックスに1を与えたら、ボタンのコントロールテンプレート(btn1という名前)の最初のボタンはその背景色を変更する必要があります。 – Divagar