Skip to content

Commit 422b76c

Browse files
Add button margins
1 parent 918f4fb commit 422b76c

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

FileHider/Views/MainView.axaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,21 @@
2828
<Button Grid.Column="2" Margin="5, 0, 0, 0" Command="{Binding BrowseInputFileCommand}" HorizontalAlignment="Right">Browse</Button>
2929
</Grid>
3030
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0, 5">
31-
<Button Command="{Binding AddFilesCommand}">Add files</Button>
32-
<Button Command="{Binding AddDirCommand}">Add folder</Button>
33-
<Button Command="{Binding RemoveCommand}">Remove</Button>
34-
<Button Command="{Binding RemoveAllCommand}">Remove All</Button>
31+
<Button Command="{Binding AddFilesCommand}"
32+
Margin="5, 0">Add files</Button>
33+
<Button Command="{Binding AddDirCommand}"
34+
Margin="5, 0">Add folder</Button>
35+
<Button Command="{Binding RemoveCommand}"
36+
Margin="5, 0">Remove</Button>
37+
<Button Command="{Binding RemoveAllCommand}"
38+
Margin="5, 0">Remove All</Button>
3539
<Button Command="{Binding BackCommand}"
36-
HorizontalAlignment="Right">Back</Button>
40+
HorizontalAlignment="Right"
41+
Margin="5, 0">Back</Button>
3742
<Button Name="HideFilesBtn"
3843
Command="{Binding HideFilesCommand}"
39-
HorizontalAlignment="Right">Hide Files</Button>
44+
HorizontalAlignment="Right"
45+
Margin="5, 0">Hide Files</Button>
4046
</StackPanel>
4147

4248
<ProgressBar Grid.Row="2"

0 commit comments

Comments
 (0)