Skip to content

Commit

Permalink
Redesigned "Export CSV" popup (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed May 5, 2024
1 parent c532266 commit 1a6f69a
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions ColorPicker/Pages/ImageExtractorPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -361,25 +361,31 @@
FontWeight="Bold"
Foreground="{DynamicResource Foreground1}"
Text="{x:Static lang:Resources.SelectFormatItems}" />
<RadioButton
x:Name="CommaRadioBtn"
Margin="10 0"
Background="Transparent"
BorderBrush="{DynamicResource AccentColor}"
Content="{x:Static lang:Resources.CommaSeparated}"
Foreground="{DynamicResource Foreground1}"
GroupName="Format"
IsChecked="True"
Style="{DynamicResource RadioButtonStyle1}" />
<RadioButton
x:Name="SemiColonRadioBtn"
Margin="10 0"
Background="Transparent"
BorderBrush="{DynamicResource AccentColor}"
Content="{x:Static lang:Resources.SemiColonSeparated}"
Foreground="{DynamicResource Foreground1}"
GroupName="Format"
Style="{DynamicResource RadioButtonStyle1}" />
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
<RadioButton
x:Name="CommaRadioBtn"
Width="50"
Margin="5 0"
HorizontalContentAlignment="Center"
Background="Transparent"
Content=","
FontWeight="Bold"
Foreground="{DynamicResource AccentColor}"
GroupName="Format"
IsChecked="True"
Style="{DynamicResource DefaultToggleButton}" />
<RadioButton
x:Name="SemiColonRadioBtn"
Width="50"
Margin="5 0"
HorizontalContentAlignment="Center"
Background="Transparent"
Content=";"
FontWeight="Bold"
Foreground="{DynamicResource AccentColor}"
GroupName="Format"
Style="{DynamicResource DefaultToggleButton}" />
</StackPanel>
<CheckBox
x:Name="IncludeFrequenceChk"
VerticalAlignment="Center"
Expand Down

0 comments on commit 1a6f69a

Please sign in to comment.