Skip to content

Commit

Permalink
V4.5.1 Released
Browse files Browse the repository at this point in the history
  • Loading branch information
XceedBoucherS committed Aug 15, 2023
1 parent ad07b4d commit df96234
Show file tree
Hide file tree
Showing 454 changed files with 610 additions and 517 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

[assembly: AssemblyCompany( "Xceed Software Inc." )]
[assembly: AssemblyProduct( "Xceed Toolkit for WPF - AvalonDock" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2022" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2023" )]



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

[assembly: AssemblyCompany( "Xceed Software Inc." )]
[assembly: AssemblyProduct( "Xceed Toolkit for WPF - AvalonDock" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2022" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2023" )]



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

[assembly: AssemblyCompany( "Xceed Software Inc." )]
[assembly: AssemblyProduct( "Xceed Toolkit for WPF - AvalonDock" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2022" )]
[assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2023" )]


// Setting ComVisible to false makes the types in this assembly not visible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Threading;
using Xceed.Wpf.AvalonDock.Layout;

namespace Xceed.Wpf.AvalonDock.Controls
Expand Down Expand Up @@ -96,11 +97,10 @@ private static void OnModelChanged( DependencyObject d, DependencyPropertyChange
/// </summary>
protected virtual void OnModelChanged( DependencyPropertyChangedEventArgs e )
{
if( Model != null )
SetLayoutItem( Model.Root.Manager.GetLayoutItemFromModel( Model ) );
if( ( this.Model != null ) && ( this.Model.Root != null ) && ( this.Model.Root.Manager != null ) )
this.SetLayoutItem( Model.Root.Manager.GetLayoutItemFromModel( Model ) );
else
SetLayoutItem( null );
//UpdateLogicalParent();
this.SetLayoutItem( null );
}

#endregion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -923,10 +923,13 @@ public void DockAsDocument()

if( newParentPane != null )
{
Root.Manager.RaisePreviewDockEvent( this );
newParentPane.Children.Add( this );
Root.Manager.RaiseDockedEvent( this );
}
else
{
Root.Manager.RaisePreviewDockEvent( this );
var mainLayoutPanel = new LayoutPanel() { Orientation = Orientation.Horizontal };
if( root.RootPanel != null )
{
Expand All @@ -938,6 +941,7 @@ public void DockAsDocument()
mainLayoutPanel.Children.Add( ( ILayoutPanelElement )newParentPane );

newParentPane.Children.Add( this );
Root.Manager.RaiseDockedEvent( this );
}

root.CollectGarbage();
Expand All @@ -952,6 +956,8 @@ public void DockAsDocument()
/// </summary>
public void Dock()
{
Root.Manager.RaisePreviewDockEvent( this );

if( PreviousContainer != null )
{
var currentContainer = Parent as ILayoutContainer;
Expand Down Expand Up @@ -982,6 +988,7 @@ public void Dock()
InternalDock();
}

Root.Manager.RaiseDockedEvent( this );
IsFloating = false;

if( this.Root != null )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Toolkit for WPF
Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Toolkit for WPF
Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Toolkit for WPF
Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Toolkit for WPF

Copyright (C) 2007-2022 Xceed Software Inc.
Copyright (C) 2007-2023 Xceed Software Inc.

This program is provided to you under the terms of the XCEED SOFTWARE, INC.
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
Expand Down
Loading

0 comments on commit df96234

Please sign in to comment.