Skip to content

Commit 95cb257

Browse files
authored
Reordered buttons on the properties dialog (#1851)
1 parent 0a1b4df commit 95cb257

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Files/Views/Pages/Properties.xaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,23 +70,23 @@
7070
<ColumnDefinition Width="Auto" />
7171
</Grid.ColumnDefinitions>
7272
<Button
73-
x:Name="CancelButton"
74-
x:Uid="PropertiesDialogCancelButton"
73+
x:Name="OKButton"
74+
x:Uid="PropertiesDialogOKButton"
7575
Grid.Column="1"
7676
MinWidth="100"
7777
Margin="0,0,10,0"
7878
HorizontalAlignment="Right"
79-
Click="CancelButton_Click"
80-
Content="Cancel"
79+
Click="OKButton_Click"
80+
Content="OK"
8181
Style="{ThemeResource ButtonRevealStyle}" />
8282
<Button
83-
x:Name="OKButton"
84-
x:Uid="PropertiesDialogOKButton"
83+
x:Name="CancelButton"
84+
x:Uid="PropertiesDialogCancelButton"
8585
Grid.Column="2"
8686
MinWidth="100"
8787
HorizontalAlignment="Right"
88-
Click="OKButton_Click"
89-
Content="OK"
88+
Click="CancelButton_Click"
89+
Content="Cancel"
9090
Style="{ThemeResource ButtonRevealStyle}" />
9191
</Grid>
9292
</Grid>

0 commit comments

Comments
 (0)