Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Namespace Refactoring to AvalonDock (reverting to original authoring in version 2.0 and earlier) #102

Merged
merged 13 commits into from
Dec 11, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replaced Code File Line Column
  • Loading branch information
Dirkster99 committed Dec 11, 2019
commit 7509eac7ca267497f5bdaa02b3b86b8101194ec1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Window x:Class="AvalonDockTest.views.AnchorablePaneTestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock"
xmlns:xcad="https://github.com/Dirkster99/AvalonDock"
Height="600" Width="800">
<xcad:DockingManager x:Name="dockingManager" AllowMixedOrientation="True">
<xcad:LayoutRoot>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Window x:Class="AvalonDockTest.Views.LayoutAnchorableFloatingWindowControlTestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock"
xmlns:xcad="https://github.com/Dirkster99/AvalonDock"
Title="Exception Window" Height="800" Width="1200">
<Grid>
<TabControl x:Name="tabControl" SelectedIndex="0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ This program is provided to you under the terms of the Microsoft Public
)]


[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes" )]
[assembly: XmlnsDefinition( "https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes" )]
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ This program is provided to you under the terms of the New BSD
)]


[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes" )]
[assembly: XmlnsDefinition( "https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes" )]
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ This program is provided to you under the terms of the Microsoft Public
)]


[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes" )]
[assembly: XmlnsDefinition( "https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes" )]
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ This program is provided to you under the terms of the Microsoft Public
)]


[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes" )]
[assembly: XmlnsDefinition( "https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes" )]
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ This program is provided to you under the terms of the New BSD
)]


[assembly: XmlnsDefinition("http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes")]
23 changes: 11 additions & 12 deletions source/Components/Xceed.Wpf.AvalonDock/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ This program is provided to you under the terms of the Microsoft Public

***********************************************************************************/

using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Markup;
Expand All @@ -24,7 +23,7 @@ This program is provided to you under the terms of the Microsoft Public
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
[assembly: CLSCompliant( true )]
[assembly: CLSCompliant(true)]

//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
Expand All @@ -38,18 +37,18 @@ This program is provided to you under the terms of the Microsoft Public

[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

[assembly: XmlnsPrefix( "http://schemas.xceed.com/wpf/xaml/avalondock", "xcad" )]
[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock" )]
[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Controls" )]
[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Converters" )]
[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Layout" )]
[assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "AvalonDock.Themes" )]
[assembly: XmlnsPrefix("https://github.com/Dirkster99/AvalonDock", "xcad")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock.Controls")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock.Converters")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock.Layout")]
[assembly: XmlnsDefinition("https://github.com/Dirkster99/AvalonDock", "AvalonDock.Themes")]


2 changes: 1 addition & 1 deletion source/TestApp/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
x:Class="TestApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:avalonDock="http://schemas.xceed.com/wpf/xaml/avalondock"
xmlns:avalonDock="https://github.com/Dirkster99/AvalonDock"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:TestApp"
xmlns:winformsIntegration="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
Expand Down