blob: bcfc7d093adda4723f3979a547afce64f7258695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!--
Copyright (C) 2025 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-->
<NavigationWindow x:Class="QtVsTools.Wizards.Common.WizardWindow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
WindowStartupLocation="CenterOwner"
ShowInTaskbar="False"
ShowsNavigationUI="False"
Title="Wizard Window"
ResizeMode="CanResizeWithGrip"
MinHeight="480"
MinWidth="640"
Height="480"
Width="640"
MaxHeight="768"
MaxWidth="1024" />
|