mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add "Channel Select" UI in about section
This commit is contained in:
parent
77e966ed3a
commit
1bf95201cc
1 changed files with 39 additions and 18 deletions
|
|
@ -693,7 +693,7 @@
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
<Border
|
<Border
|
||||||
Margin="0,30,0,0"
|
Margin="0,30,0,0"
|
||||||
Padding="0"
|
Padding="0"
|
||||||
Style="{DynamicResource SettingGroupBox}">
|
Style="{DynamicResource SettingGroupBox}">
|
||||||
|
|
@ -720,7 +720,7 @@
|
||||||
<ComboBox
|
<ComboBox
|
||||||
x:Name="SelectScreen"
|
x:Name="SelectScreen"
|
||||||
MinWidth="160"
|
MinWidth="160"
|
||||||
Margin="0,0,18,0"
|
Margin="0,0,18,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
ItemsSource="{Binding ScreenNumbers}"
|
ItemsSource="{Binding ScreenNumbers}"
|
||||||
|
|
@ -738,14 +738,12 @@
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBlock Style="{StaticResource Glyph}">
|
<TextBlock Style="{StaticResource Glyph}">
|
||||||

|

|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
<Separator
|
<Separator Width="Auto" BorderThickness="1">
|
||||||
Width="Auto"
|
|
||||||
BorderThickness="1">
|
|
||||||
<Separator.Style>
|
<Separator.Style>
|
||||||
<Style BasedOn="{StaticResource SettingSeparatorStyle}" TargetType="Separator">
|
<Style BasedOn="{StaticResource SettingSeparatorStyle}" TargetType="Separator">
|
||||||
<Setter Property="Visibility" Value="Visible" />
|
<Setter Property="Visibility" Value="Visible" />
|
||||||
|
|
@ -758,9 +756,7 @@
|
||||||
</Separator.Style>
|
</Separator.Style>
|
||||||
</Separator>
|
</Separator>
|
||||||
|
|
||||||
<Border
|
<Border Margin="0" BorderThickness="0">
|
||||||
Margin="0"
|
|
||||||
BorderThickness="0">
|
|
||||||
<Border.Style>
|
<Border.Style>
|
||||||
<Style BasedOn="{StaticResource SettingGroupBox}" TargetType="Border">
|
<Style BasedOn="{StaticResource SettingGroupBox}" TargetType="Border">
|
||||||
<Setter Property="Visibility" Value="Visible" />
|
<Setter Property="Visibility" Value="Visible" />
|
||||||
|
|
@ -786,8 +782,7 @@
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
ItemsSource="{Binding SearchWindowAligns}"
|
ItemsSource="{Binding SearchWindowAligns}"
|
||||||
SelectedValue="{Binding Settings.SearchWindowAlign}"
|
SelectedValue="{Binding Settings.SearchWindowAlign}"
|
||||||
SelectedValuePath="Value">
|
SelectedValuePath="Value" />
|
||||||
</ComboBox>
|
|
||||||
<StackPanel Margin="0,0,18,0" Orientation="Horizontal">
|
<StackPanel Margin="0,0,18,0" Orientation="Horizontal">
|
||||||
<StackPanel.Style>
|
<StackPanel.Style>
|
||||||
<Style TargetType="StackPanel">
|
<Style TargetType="StackPanel">
|
||||||
|
|
@ -817,7 +812,7 @@
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBlock Style="{StaticResource Glyph}">
|
<TextBlock Style="{StaticResource Glyph}">
|
||||||

|

|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
@ -3014,7 +3009,10 @@
|
||||||
TextAlignment="left" />
|
TextAlignment="left" />
|
||||||
|
|
||||||
|
|
||||||
<Border Margin="0,9,0,0" Style="{DynamicResource SettingGroupBox}">
|
<Border
|
||||||
|
Margin="0,9,0,0"
|
||||||
|
CornerRadius="8 8 0 0"
|
||||||
|
Style="{DynamicResource SettingGroupBox}">
|
||||||
<ItemsControl Style="{StaticResource SettingGrid}">
|
<ItemsControl Style="{StaticResource SettingGrid}">
|
||||||
<StackPanel Style="{StaticResource TextPanel}">
|
<StackPanel Style="{StaticResource TextPanel}">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
|
|
@ -3026,11 +3024,6 @@
|
||||||
<TextBlock Style="{DynamicResource SettingSubTitleLabel}" Text="{DynamicResource version}" />
|
<TextBlock Style="{DynamicResource SettingSubTitleLabel}" Text="{DynamicResource version}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel Grid.Column="2" Orientation="Horizontal">
|
<StackPanel Grid.Column="2" Orientation="Horizontal">
|
||||||
<Button
|
|
||||||
Margin="0,0,10,0"
|
|
||||||
HorizontalAlignment="Right"
|
|
||||||
Click="OnCheckUpdates"
|
|
||||||
Content="{DynamicResource checkUpdates}" />
|
|
||||||
<Button
|
<Button
|
||||||
Margin="0,0,14,0"
|
Margin="0,0,14,0"
|
||||||
Padding="0"
|
Padding="0"
|
||||||
|
|
@ -3054,6 +3047,34 @@
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
|
|
||||||
|
<Border
|
||||||
|
Margin="0,0,0,8"
|
||||||
|
CornerRadius="0 0 8 8"
|
||||||
|
Style="{DynamicResource SettingGroupBox}">
|
||||||
|
<ItemsControl Style="{StaticResource SettingGrid}">
|
||||||
|
<StackPanel Style="{StaticResource TextPanel}">
|
||||||
|
<TextBlock
|
||||||
|
Grid.Column="1"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Style="{DynamicResource SettingTitleLabel}"
|
||||||
|
Text="Update Source" />
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Grid.Column="2" Orientation="Horizontal">
|
||||||
|
<ComboBox Margin="0,0,8,0" SelectedIndex="0">
|
||||||
|
<ComboBoxItem>Release</ComboBoxItem>
|
||||||
|
<ComboBoxItem>Preview</ComboBoxItem>
|
||||||
|
</ComboBox>
|
||||||
|
<Button
|
||||||
|
Margin="0,0,14,0"
|
||||||
|
HorizontalAlignment="Right"
|
||||||
|
Click="OnCheckUpdates"
|
||||||
|
Content="{DynamicResource checkUpdates}" />
|
||||||
|
</StackPanel>
|
||||||
|
<TextBlock Width="50" Style="{StaticResource Glyph}" />
|
||||||
|
</ItemsControl>
|
||||||
|
</Border>
|
||||||
|
|
||||||
<Border Height="62" Style="{DynamicResource SettingGroupBox}">
|
<Border Height="62" Style="{DynamicResource SettingGroupBox}">
|
||||||
<ItemsControl Style="{StaticResource SettingGrid}">
|
<ItemsControl Style="{StaticResource SettingGrid}">
|
||||||
<StackPanel Style="{StaticResource TextPanel}">
|
<StackPanel Style="{StaticResource TextPanel}">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue