mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
* Upgrading to WinUIEx 2.2 * Replacing Mica * Fix build * Update notice.md --------- Co-authored-by: Stefan Markovic <stefan@janeasystems.com>
40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<winuiex:WindowEx
|
|
x:Class="FileLocksmithUI.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:views="using:PowerToys.FileLocksmithUI.Views"
|
|
xmlns:winuiex="using:WinUIEx"
|
|
x:Uid="AppTitle"
|
|
Width="680"
|
|
MinWidth="480"
|
|
MinHeight="320"
|
|
IsShownInSwitchers="True"
|
|
IsTitleBarVisible="True"
|
|
mc:Ignorable="d">
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="32" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid x:Name="titleBar">
|
|
<StackPanel
|
|
Margin="16,8,8,8"
|
|
VerticalAlignment="Top"
|
|
Orientation="Horizontal">
|
|
<Image Source="Assets/AppList.png" />
|
|
<TextBlock
|
|
x:Uid="AppTitleText"
|
|
Margin="12,0,0,0"
|
|
Style="{StaticResource CaptionTextBlockStyle}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
<views:MainPage x:Name="mainPage" Grid.Row="1" />
|
|
</Grid>
|
|
</winuiex:WindowEx>
|