現在、UWP を使用して Windows 10 用のアプリを作成していXAML
ますC#
。メニューと左ペインが必要なアプリがあります。左メニューのこの例を参照してください。
画像 - 次の Web
ペインは常に開いている必要があります。これは私が現在持っているものですMainPage.xaml
:
<SplitView x:Name="MySplitView" DisplayMode="CompactOverlay" IsPaneOpen="False"
CompactPaneLength="50" OpenPaneLength="200">
<SplitView.Pane>
<StackPanel Background="Gray">
<Button x:Name="HamburgerButton" FontFamily="Segoe MDL2 Assets" Content=""
Width="50" Height="50" Background="Transparent" Click="HamburgerButton_Click"/>
<StackPanel Orientation="Horizontal">
<Button x:Name="HomeButton" FontFamily="Segoe MDL2 Assets" Content=""
Width="50" Height="50" Background="Transparent" Click="HomeButton_Click"/>
<TextBlock Text="Accueil" FontSize="18" VerticalAlignment="Center" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Button x:Name="CommisButton" FontFamily="Segoe MDL2 Assets" Content=""
Width="50" Height="50" Background="Transparent" Click="CommisButton_Click"/>
<TextBlock Text="Commis" FontSize="18" VerticalAlignment="Center" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Button x:Name="CommentsButton" FontFamily="Segoe MDL2 Assets" Content=""
Width="50" Height="50" Background="Transparent" Click="CommentsButton_Click"/>
<TextBlock Text="Commentaires" FontSize="18" VerticalAlignment="Center" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<Button x:Name="SettingsButton" FontFamily="Segoe MDL2 Assets" Content=""
Width="50" Height="50" Background="Transparent" Click="SettingsButton_Click"/>
<TextBlock Text="Paramètres" FontSize="18" VerticalAlignment="Center" />
</StackPanel>
</StackPanel>
</SplitView.Pane>
<SplitView.Content>
<!-- My Content -->
</SplitView.Content>
</SplitView>
別のものを作ろうとしましSplitView.Pane
たが、成功しません。左パネルを作成する方法が必要です。それだけです。
ありがとう