Increase font size for default text

This commit is contained in:
Ivan Stošić 2022-09-21 18:30:50 +02:00
parent 79847f49b3
commit 17d4fac5c0

View File

@ -110,6 +110,7 @@ namespace winrt::FileLocksmithGUI::implementation
// Construct the UI element and display it
Controls::TextBlock text_block;
text_block.Text(text);
text_block.FontSize(24.0);
text_block.HorizontalAlignment(HorizontalAlignment::Center);
text_block.VerticalAlignment(VerticalAlignment::Center);
stackPanel().Children().Append(text_block);