Skip to content

Commit 80a76b0

Browse files
committed
- Add Refresh Button (it need function binding)
1 parent 08f50ea commit 80a76b0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Flow.Launcher/SettingWindow.xaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,15 +871,19 @@
871871
<Grid>
872872
<Grid.ColumnDefinitions>
873873
<ColumnDefinition></ColumnDefinition>
874+
<ColumnDefinition></ColumnDefinition>
874875
</Grid.ColumnDefinitions>
875876
<Grid.RowDefinitions>
876877
<RowDefinition Height="72"></RowDefinition>
877878
<RowDefinition Height="*"></RowDefinition>
878879
</Grid.RowDefinitions>
879-
<Border Grid.Row="0" Background="#f3f3f3" Padding="5 18 0 0">
880+
<Border Grid.Row="0" Grid.Column="0" Background="#f3f3f3" Padding="5 18 0 0">
880881
<TextBlock Text="Plugin Store" TextAlignment="left" FontSize="30" Margin="0 5 0 5"/>
881882
</Border>
882-
<Border Grid.Column="0" Grid.Row="1" Background="#f3f3f3" Padding="0 0 0 0">
883+
<Border Grid.Row="0" Grid.Column="1" Background="#f3f3f3" Padding="5 18 32 0">
884+
<Button Content="Refresh" FontSize="13" Margin="0 5 0 5" HorizontalAlignment="Right" Background="#ffffff" Padding="12 4 12 4" Height="34" BorderBrush="#cecece" BorderThickness="1 1 1 2"/>
885+
</Border>
886+
<Border Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="1" Background="#f3f3f3" Padding="0 0 0 0">
883887
<ListBox x:Name="StoreListBox"
884888
ItemsSource="{Binding ExternalPlugins}"
885889
Margin="6, 0, 0, 0" ScrollViewer.HorizontalScrollBarVisibility="Disabled"

0 commit comments

Comments
 (0)