aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.WixBA/RootView.xaml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.WixBA/RootView.xaml6
-rw-r--r--src/WixToolset.WixBA/RootView.xaml.cs2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.WixBA/RootView.xaml b/src/WixToolset.WixBA/RootView.xaml
index bbf2f9f2..b7d535d1 100644
--- a/src/WixToolset.WixBA/RootView.xaml
+++ b/src/WixToolset.WixBA/RootView.xaml
@@ -1,10 +1,10 @@
1<?xml version="1.0" encoding="utf-8" ?> 1<?xml version="1.0" encoding="utf-8" ?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> 2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3 3
4<Window x:Class="WixToolset.UX.RootView" 4<Window x:Class="WixToolset.WixBA.RootView"
5 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 5 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
6 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 6 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
7 xmlns:ux="clr-namespace:WixToolset.UX" 7 xmlns:wixba="clr-namespace:WixToolset.WixBA"
8 MinWidth="550" 8 MinWidth="550"
9 MinHeight="400" 9 MinHeight="400"
10 Width="750" 10 Width="750"
@@ -402,7 +402,7 @@
402 </Grid> 402 </Grid>
403 403
404 <WebBrowser DockPanel.Dock="Bottom" 404 <WebBrowser DockPanel.Dock="Bottom"
405 ux:BrowserProperties.HtmlDoc="{Binding UpdateChanges}" /> 405 wixba:BrowserProperties.HtmlDoc="{Binding UpdateChanges}" />
406 </DockPanel> 406 </DockPanel>
407 407
408 <TextBlock x:Name="DowngradeMessageTextBlk" 408 <TextBlock x:Name="DowngradeMessageTextBlk"
diff --git a/src/WixToolset.WixBA/RootView.xaml.cs b/src/WixToolset.WixBA/RootView.xaml.cs
index 1d4301f2..e1ee19db 100644
--- a/src/WixToolset.WixBA/RootView.xaml.cs
+++ b/src/WixToolset.WixBA/RootView.xaml.cs
@@ -1,6 +1,6 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.UX 3namespace WixToolset.WixBA
4{ 4{
5 using System.ComponentModel; 5 using System.ComponentModel;
6 using System.Windows; 6 using System.Windows;