実現出来ていること
XAMLのみを用いて、画像のようなアニメーションをするサイドメニューを作りました。
緑の丸と紫の丸は、今はただの円ですが、メニューアイコンにする予定です。(つまり Image 要素)
画像のすぐ下にソースコードも載せます。
XAML
1<Window x:Class="SideBar.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 6 xmlns:local="clr-namespace:SideBar" mc:Ignorable="d" Title="MainWindow" 7 Height="450" Width="800"> 8 <DockPanel> 9 <StackPanel DockPanel.Dock="Left" Width="53" Background="DarkGray"> 10 <StackPanel.Triggers> 11 <EventTrigger RoutedEvent="MouseEnter" SourceName="side_menu_panel"> 12 <BeginStoryboard> 13 <Storyboard> 14 <DoubleAnimation Storyboard.TargetProperty="Width" 15 From="{Binding Path=Width, RelativeSource={RelativeSource Self}}" 16 To="145" Duration="0:0:0.25" /> 17 </Storyboard> 18 </BeginStoryboard> 19 </EventTrigger> 20 <EventTrigger RoutedEvent="MouseLeave" SourceName="side_menu_panel"> 21 <BeginStoryboard> 22 <Storyboard> 23 <DoubleAnimation Storyboard.TargetProperty="Width" 24 From="{Binding Path=Width, RelativeSource={RelativeSource Self}}" 25 To="53" Duration="0:0:0.25" /> 26 </Storyboard> 27 </BeginStoryboard> 28 </EventTrigger> 29 </StackPanel.Triggers> 30 <StackPanel.Resources> 31 <Style TargetType="RadioButton"> 32 <Setter Property="Background" Value="Transparent" /> 33 <Setter Property="Padding" Value="4" /> 34 <Setter Property="VerticalContentAlignment" Value="Center" /> 35 </Style> 36 <Style TargetType="ContentPresenter" x:Key="MarginLeft"> 37 <Setter Property="Margin" Value="20,0,0,0" /> 38 <!--<Setter Property="Visibility" Value="Collapsed" />--> 39 </Style> 40 </StackPanel.Resources> 41 42 <!-- menu items --> 43 <StackPanel x:Name="side_menu_panel"> 44 <RadioButton Content="メニュー1"> 45 <RadioButton.Template> 46 <ControlTemplate TargetType="RadioButton"> 47 <!-- Set background so that it can be selected. --> 48 <Border Background="{TemplateBinding Background}" 49 Padding="{TemplateBinding Padding}" Cursor="Hand"> 50 <BulletDecorator> 51 <BulletDecorator.Bullet> 52 <Ellipse Width="45" Height="45" Fill="#FF21E402" /> 53 </BulletDecorator.Bullet> 54 <ContentPresenter Style="{StaticResource MarginLeft}" 55 VerticalAlignment="{TemplateBinding VerticalContentAlignment}" /> 56 </BulletDecorator> 57 </Border> 58 </ControlTemplate> 59 </RadioButton.Template> 60 </RadioButton> 61 <RadioButton Content="メニュー2"> 62 <RadioButton.Template> 63 <ControlTemplate TargetType="RadioButton"> 64 <!-- Set background so that it can be selected. --> 65 <Border Background="{TemplateBinding Background}" 66 Padding="{TemplateBinding Padding}" Cursor="Hand"> 67 <BulletDecorator> 68 <BulletDecorator.Bullet> 69 <Ellipse Width="45" Height="45" Fill="MediumVioletRed" /> 70 </BulletDecorator.Bullet> 71 <ContentPresenter Style="{StaticResource MarginLeft}" 72 VerticalAlignment="{TemplateBinding VerticalContentAlignment}" /> 73 </BulletDecorator> 74 </Border> 75 </ControlTemplate> 76 </RadioButton.Template> 77 </RadioButton> 78 </StackPanel> 79 </StackPanel> 80 81 <!-- main panel --> 82 <Rectangle DockPanel.Dock="Right" Fill="Gray" /> 83 </DockPanel> 84</Window>
実現したいこと
ソースコード中に、手計算で算出した数値がいくつかありますが、それらは自動的に算出させて、手計算を不要にしたいです。
但し、コードビハインド等を使って C# から計算するのではなく、XAMLのみで実現したいです。
自動計算させたい数値は、具体的には、
- StackPanel の初期値 Width = 53
- DoubleAnimation の To = 145 と To = 53
です。
メニューが閉じている時の幅は、「メニュー1」「メニュー2」の Visibility が Collapsed の状態で、StackPanel の Width を設定しなかったとき、自動的に計算される Width の値で計算できます。
つまり、手計算だと、4 + 45 + 4 = 53 です。(4 = RadioButton の Padding, 45 = Ellipse の Width)
メニューが開いている時の幅は、「メニュー1」「メニュー2」の Visibility が Visible の状態で、StackPanel の Width を設定しなかったとき、自動的に計算される Width の値で計算できます。
こっちは手計算はよく分からなかったのでやってません。とりあえず、145 で収まったのでそれにしただけです。
留意点
同じ動作が実現できるのであれば、使っているコントロールなどは自由に変えれます。
自分でコントロールをカスタムして作成する必要がある場合は、C#を使わないといけないと思いますので、その際はC#を使っても大丈夫です。
現状メニューとしてクリック可能な領域は、それぞれ以下の赤と青の矩形で示した領域の内側(境界線含む)です。
この動作についても現状のままとしたいです。
(したがって、アイコンの部分と「メニュー1」の部分を別のボタンなどにして分けるようなことはしたくないです)
ご回答、よろしくお願い致します。
環境
Windows 10
Visual Studio 2019
.NET Core 3.1
WPF
回答1件
あなたの回答
tips
プレビュー