mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01:00
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
|
|
<Window
|
||
|
|
x:Class="ProjectsEditor.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:props="clr-namespace:ProjectsEditor.Properties"
|
||
|
|
xmlns:ui="http://schemas.modernwpf.com/2019"
|
||
|
|
x:Name="ProjectsMainWindow"
|
||
|
|
Title="{x:Static props:Resources.MainTitle}"
|
||
|
|
ui:TitleBar.Background="{DynamicResource PrimaryBackgroundBrush}"
|
||
|
|
ui:TitleBar.InactiveBackground="{DynamicResource TertiaryBackgroundBrush}"
|
||
|
|
ui:TitleBar.IsIconVisible="True"
|
||
|
|
ui:WindowHelper.UseModernWindowStyle="True"
|
||
|
|
MinWidth="700"
|
||
|
|
MinHeight="480"
|
||
|
|
AutomationProperties.Name="Projects Editor"
|
||
|
|
Closing="OnClosing"
|
||
|
|
ContentRendered="OnContentRendered"
|
||
|
|
ResizeMode="CanResize"
|
||
|
|
WindowStartupLocation="CenterOwner"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Background="{DynamicResource PrimaryBackgroundBrush}">
|
||
|
|
<Border
|
||
|
|
CornerRadius="20"
|
||
|
|
BorderThickness="1">
|
||
|
|
<Grid Margin="0,10,0,0">
|
||
|
|
<Frame
|
||
|
|
x:Name="ContentFrame"
|
||
|
|
NavigationUIVisibility="Hidden"/>
|
||
|
|
</Grid>
|
||
|
|
</Border>
|
||
|
|
</Window>
|