aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2022-02-22 14:36:53 +0100
committerKarsten Heimrich <karsten.heimrich@qt.io>2022-02-23 10:52:10 +0000
commit87f3d1e099bc010b80547b5cc03c69228e12536d (patch)
tree5e8af173c1426d21d33721eaacab4e5bd3519a17 /QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml
parentf7616c15124b97fd1e23906258ff35b40786266f (diff)
Re-enable designing XAML files in Visual Studio
* Add missing system references * Remove wrapper around VisualStudio.PlatformUI.DialogWindow * Depend on the right version of Microsoft.VisualStudio.Shell.15.0 Change-Id: Iadbbe9ac1f1cb28fe0bb7b3b16ca49b4507ab2a9 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
Diffstat (limited to 'QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml')
-rw-r--r--QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml b/QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml
index 0fb4d4a7..0cfabcb6 100644
--- a/QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml
+++ b/QtVsTools.Package/QtMsBuild/QtModulesPopup.xaml
@@ -1,7 +1,7 @@
<!--
*****************************************************************************
**
-** Copyright (C) 2021 The Qt Company Ltd.
+** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt VS Tools.
@@ -27,10 +27,10 @@
**
*****************************************************************************
-->
-<local:VsToolsDialogWindow x:Class="QtVsTools.QtMsBuild.QtModulesPopup"
+<vsui:DialogWindow x:Class="QtVsTools.QtMsBuild.QtModulesPopup"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:QtVsTools"
+ xmlns:vsui="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.15.0"
ResizeMode="CanResize"
Width="800" MaxHeight="550"
MouseDown="Window_MouseDown"
@@ -108,4 +108,4 @@
<Button IsCancel="True" MinHeight="23" MinWidth="74">_Cancel</Button>
</WrapPanel>
</Grid>
-</local:VsToolsDialogWindow>
+</vsui:DialogWindow>