目標を達成する方法を示すウィンドウを作成しました。ウィンドウの右上に 2 つのボタンがあり、それぞれをクリックすると、赤または黒の枠が展開されます。
<Window x:Class="WpfApplicationUpper.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:WpfApplicationUpper" Height="100" Width="200">
<Window.Resources>
<ControlTemplate x:Key="VerticalExpander" TargetType="{x:Type Expander}">
<Border Name="ContentBorder"
Width="0">
<ContentPresenter />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsExpanded"
Value="True">
<Setter TargetName="ContentBorder"
Property="Width"
Value="Auto" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="20" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" Orientation="Vertical">
<Button Name="B1" Content="T" Click="B1_Click"/>
<Button Name="B2"
Content="F" Click="B2_Click"/>
</StackPanel>
<DockPanel LastChildFill="True">
<Grid DockPanel.Dock="Right">
<Expander Name="MainExpander1"
Template="{StaticResource VerticalExpander}"
IsExpanded="False">
<Border Background="Black"
Width="50">
</Border>
</Expander>
<Expander Name="MainExpander2"
Template="{StaticResource VerticalExpander}"
IsExpanded="False"
DockPanel.Dock="Right">
<Border Background="Red"
Width="50">
</Border>
</Expander>
</Grid>
<Border Name="NonSliding"
Width="100"
Height="50"
Background="Green">
</Border>
</DockPanel>
</Grid>
</Window>
およびコードビハインドで:
private void B1_Click(object sender, RoutedEventArgs e)
{
MainExpander1.IsExpanded = !MainExpander1.IsExpanded;
}
private void B2_Click(object sender, RoutedEventArgs e)
{
MainExpander2.IsExpanded = !MainExpander2.IsExpanded;
}