Skip to content

Commit 13fd24f

Browse files
authored
Fix CS1002 in TrySetSystemBackdrop method
A semicolon was added at the end of the backdropController creation statement.
1 parent 4885434 commit 13fd24f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hub/apps/windows-app-sdk/system-backdrop-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public sealed partial class MainWindow : Window
214214
m_configurationSource.IsInputActive = true;
215215
SetConfigurationSourceTheme();
216216

217-
m_backdropController = new Microsoft.UI.Composition.SystemBackdrops.MicaController()
217+
m_backdropController = new Microsoft.UI.Composition.SystemBackdrops.MicaController();
218218

219219
// Enable the system backdrop.
220220
// Note: Be sure to have "using WinRT;" to support the Window.As<...>() call.

0 commit comments

Comments
 (0)