|
| 1 | +<Window x:Class="Flow.Launcher.SelectFileManagerWindow" |
| 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:Flow.Launcher" |
| 7 | + mc:Ignorable="d" |
| 8 | + WindowStartupLocation="CenterScreen" |
| 9 | + Title="SelectFileManagerWindow" Height="450" Width="500" ResizeMode="NoResize" Background="#f3f3f3"> |
| 10 | + <Grid> |
| 11 | + <Grid.RowDefinitions> |
| 12 | + <RowDefinition /> |
| 13 | + <RowDefinition /> |
| 14 | + <RowDefinition /> |
| 15 | + <RowDefinition Height="80"/> |
| 16 | + </Grid.RowDefinitions> |
| 17 | + <Grid.ColumnDefinitions> |
| 18 | + <ColumnDefinition /> |
| 19 | + </Grid.ColumnDefinitions> |
| 20 | + <StackPanel Grid.Row="0" VerticalAlignment="Center"> |
| 21 | + <TextBlock Grid.Column="0" FontFamily="/Resources/#Segoe Fluent Icons" FontSize="40" TextAlignment="Center" |
| 22 | + Margin="0 0 0 0"> |
| 23 | +  |
| 24 | + </TextBlock> |
| 25 | + </StackPanel> |
| 26 | + |
| 27 | + <Border Background="#ffffff" Grid.Row="1" BorderBrush="#cecece" BorderThickness="1" Margin="14 0 14 0" Padding="0 14 0 0" CornerRadius="5"> |
| 28 | + <StackPanel Orientation="Vertical" > |
| 29 | + |
| 30 | + <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="1"> |
| 31 | + <TextBlock FontSize="14" Grid.Column="1" VerticalAlignment="Center" |
| 32 | + HorizontalAlignment="Left" Text="{DynamicResource currentPriority}" /> |
| 33 | + <TextBlock x:Name="OldPriority" Grid.Row="0" Grid.Column="1" Margin="14 0 10 0" FontSize="14" |
| 34 | + VerticalAlignment="Center" HorizontalAlignment="Left" FontWeight="Bold" /> |
| 35 | + </StackPanel> |
| 36 | + |
| 37 | + <StackPanel Orientation="Horizontal" Grid.Column="1" HorizontalAlignment="Center"> |
| 38 | + <TextBlock FontSize="14" VerticalAlignment="Center" |
| 39 | + HorizontalAlignment="Right" Text="{DynamicResource newPriority}" /> |
| 40 | + <TextBox x:Name="tbAction" Margin="14 10 15 10" Width="105" VerticalAlignment="Center" HorizontalAlignment="Left" /> |
| 41 | + </StackPanel> |
| 42 | + |
| 43 | + </StackPanel> |
| 44 | + </Border> |
| 45 | + <StackPanel Grid.Row="2" VerticalAlignment="Center"> |
| 46 | + <TextBlock Foreground="Gray" |
| 47 | + Text="{DynamicResource priority_tips}" TextWrapping="WrapWithOverflow" TextAlignment="Center" |
| 48 | + Margin="20,0,20,0"/> |
| 49 | + </StackPanel> |
| 50 | + <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="3" Grid.Column="1"> |
| 51 | + <Button x:Name="btnCancel" Click="BtnCancel_OnClick" Margin="0 0 10 0" Width="80" Height="30" |
| 52 | + Content="{DynamicResource cancel}" /> |
| 53 | + <Button x:Name="btnDone" Margin="10 0 0 0" Width="80" Height="30" Click="btnDone_OnClick"> |
| 54 | + <TextBlock x:Name="lblAdd" Text="{DynamicResource done}" /> |
| 55 | + </Button> |
| 56 | + </StackPanel> |
| 57 | + </Grid> |
| 58 | +</Window> |
0 commit comments