|
5 | 5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
6 | 6 | xmlns:local="clr-namespace:Flow.Launcher"
|
7 | 7 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
| 8 | + xmlns:ui="http://schemas.modernwpf.com/2019" |
8 | 9 | Name="FlowWelcomeWindow"
|
9 | 10 | Title="Welcome to Flow Launcher"
|
10 | 11 | Width="550"
|
11 | 12 | Height="650"
|
12 |
| - Background="{DynamicResource PopuBGColor}" |
| 13 | + Background="{DynamicResource Color00B}" |
13 | 14 | Foreground="{DynamicResource PopupTextColor}"
|
14 | 15 | ResizeMode="NoResize"
|
15 | 16 | WindowStartupLocation="CenterScreen"
|
16 | 17 | mc:Ignorable="d">
|
| 18 | + <!--#region TitleBar--> |
17 | 19 | <WindowChrome.WindowChrome>
|
18 | 20 | <WindowChrome CaptionHeight="32" ResizeBorderThickness="{x:Static SystemParameters.WindowResizeBorderThickness}" />
|
19 | 21 | </WindowChrome.WindowChrome>
|
|
70 | 72 | </Button>
|
71 | 73 | </Grid>
|
72 | 74 | </StackPanel>
|
73 |
| - <StackPanel Margin="26,12,26,0" /> |
| 75 | + <!--#endregion--> |
| 76 | + <StackPanel Margin="26,12,26,0"> |
| 77 | + <ui:Frame |
| 78 | + x:Name="ContentFrame" |
| 79 | + MinHeight="600" |
| 80 | + HorizontalAlignment="Stretch"> |
| 81 | + <ui:Frame.ContentTransitions> |
| 82 | + <ui:TransitionCollection> |
| 83 | + <ui:NavigationThemeTransition /> |
| 84 | + </ui:TransitionCollection> |
| 85 | + </ui:Frame.ContentTransitions> |
| 86 | + </ui:Frame> |
| 87 | + </StackPanel> |
74 | 88 | </StackPanel>
|
75 | 89 | <Border
|
76 | 90 | Grid.Row="1"
|
77 |
| - Background="{DynamicResource PopupButtonAreaBGColor}" |
| 91 | + Background="{DynamicResource Color00B}" |
78 | 92 | BorderBrush="{DynamicResource PopupButtonAreaBorderColor}"
|
79 | 93 | BorderThickness="0,1,0,0">
|
80 |
| - <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" /> |
| 94 | + <DockPanel> |
| 95 | + <Button |
| 96 | + Width="50" |
| 97 | + Height="50" |
| 98 | + Margin="10,5,28,5" |
| 99 | + Click="BackwardButton_Click" |
| 100 | + Content="" |
| 101 | + DockPanel.Dock="Right" |
| 102 | + FontFamily="/Resources/#Segoe Fluent Icons" |
| 103 | + FontSize="22" /> |
| 104 | + <Button |
| 105 | + Width="50" |
| 106 | + Height="50" |
| 107 | + Click="ForwardButton_Click" |
| 108 | + Content="" |
| 109 | + DockPanel.Dock="Right" |
| 110 | + FontFamily="/Resources/#Segoe Fluent Icons" |
| 111 | + FontSize="22" /> |
| 112 | + <StackPanel /> |
| 113 | + </DockPanel> |
81 | 114 | </Border>
|
82 | 115 | </Grid>
|
83 | 116 | </Window>
|
0 commit comments