Browse Source

Consistently use "http://schemas.microsoft.com/winfx/2006/xaml/presentation" as WPF XML namespace.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@4478 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 16 years ago
parent
commit
7166b2d127
  1. 2
      src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test1.xaml
  2. 2
      src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test2.xaml
  3. 2
      src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test3.xaml
  4. 2
      src/AddIns/BackendBindings/XamlBinding/XamlBinding/CompletionDataHelper.cs
  5. 2
      src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptionsDialog.xaml
  6. 2
      src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptionsDialog.xaml
  7. 2
      src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.xaml

2
src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test1.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0"?>
<Window x:Class="XamlTest.Window1"
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="XamlTest" Height="300" Width="300"
>

2
src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test2.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0"?>
<Window x:Class="XamlTest.Window1"
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="XamlTest" Height="300" Width="300"
>

2
src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/Test3.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0"?>
<Window x:Class="XamlTest.Window1"
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="XamlTest" Height="300" Width="300"
>

2
src/AddIns/BackendBindings/XamlBinding/XamlBinding/CompletionDataHelper.cs

@ -47,7 +47,7 @@ namespace ICSharpCode.XamlBinding @@ -47,7 +47,7 @@ namespace ICSharpCode.XamlBinding
#endregion
public const string XamlNamespace = "http://schemas.microsoft.com/winfx/2006/xaml";
public const string WpfXamlNamespace = "http://schemas.microsoft.com/netfx/2007/xaml/presentation";
public const string WpfXamlNamespace = "http://schemas.microsoft.com/winfx/2006/xaml/presentation";
public static XamlContext ResolveContext(string text, string fileName, int line, int col)
{

2
src/Main/Base/Project/Src/Gui/Dialogs/TabbedOptionsDialog.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
x:Class="ICSharpCode.SharpDevelop.Gui.TabbedOptionsDialog"
Height="425"
Width="450"

2
src/Main/Base/Project/Src/Gui/Dialogs/TreeViewOptionsDialog.xaml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Window xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
x:Class="ICSharpCode.SharpDevelop.Gui.TreeViewOptionsDialog"
Height="414"
Width="552"

2
src/Main/Base/Project/Src/TextEditor/Gui/Dialogs/GotoDialog.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core"
x:Class="ICSharpCode.SharpDevelop.Gui.GotoDialog"
Title="{core:Localize Dialog.Goto.DialogName}"
Height="298"

Loading…
Cancel
Save