Skip to content

Commit ea98bf2

Browse files
committed
chore: Further improvements
1 parent a05d5ee commit ea98bf2

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

UI/WindowingSamples/WindowingSamples/CustomWindow.xaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<RowDefinition Height="*" />
1515
</Grid.RowDefinitions>
1616
<controls:WindowTitleControl Text="Custom window" Glyph="&#xE161;" />
17-
1817

1918
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Spacing="8">
2019
<TextBlock x:Name="WindowText" HorizontalAlignment="Center" Text="This is custom window" FontSize="40" />

UI/WindowingSamples/WindowingSamples/MainPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
<TextBlock Text="Custom window" />
3030
</StackPanel>
3131
</Button>
32-
<Button Click="{x:Bind WindowTitleSample}">
32+
<!--<Button Click="{x:Bind WindowTitleSample}">
3333
<StackPanel Orientation="Horizontal" Spacing="8">
3434
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}" Glyph="&#xE737;" />
3535
<TextBlock Text="Window title" />
3636
</StackPanel>
37-
</Button>
37+
</Button>-->
3838
<Button Click="{x:Bind FullScreenModeSample}">
3939
<StackPanel Orientation="Horizontal" Spacing="8">
4040
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}" Glyph="&#xE740;" />

UI/WindowingSamples/WindowingSamples/MainPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public void BasicWindowSample()
3737
window.Activate();
3838
}
3939

40-
public void CustomWindowSample() { } // => new CustomWindow().Activate();
40+
public void CustomWindowSample() => new CustomWindow().Activate();
4141

4242
public void FullScreenModeSample() => new FullScreenModeWindow().Activate();
4343

UI/WindowingSamples/WindowingSamples/WindowTitleWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<RowDefinition Height="Auto" />
1414
<RowDefinition Height="*" />
1515
</Grid.RowDefinitions>
16-
<controls:WindowTitleControl Text="Window title" Glyph="&#xE7B5;" />
16+
<controls:WindowTitleControl Text="Window title" Glyph="&#xE737;" />
1717

1818
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Spacing="8">
1919
<TextBlock HorizontalAlignment="Center" Text="Type to change the window title" FontSize="20" />

0 commit comments

Comments
 (0)