Skip to content

Commit df96234

Browse files
committed
V4.5.1 Released
1 parent ad07b4d commit df96234

File tree

454 files changed

+610
-517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+610
-517
lines changed

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Aero/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
3131

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

3636

3737

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Metro/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
3131

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

3636

3737

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.VS2010/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
3131

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

3636

3737
// Setting ComVisible to false makes the types in this assembly not visible

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/Controls/LayoutDocumentTabItem.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at
2121
using System.Windows;
2222
using System.Windows.Controls;
2323
using System.Windows.Input;
24+
using System.Windows.Threading;
2425
using Xceed.Wpf.AvalonDock.Layout;
2526

2627
namespace Xceed.Wpf.AvalonDock.Controls
@@ -96,11 +97,10 @@ private static void OnModelChanged( DependencyObject d, DependencyPropertyChange
9697
/// </summary>
9798
protected virtual void OnModelChanged( DependencyPropertyChangedEventArgs e )
9899
{
99-
if( Model != null )
100-
SetLayoutItem( Model.Root.Manager.GetLayoutItemFromModel( Model ) );
100+
if( ( this.Model != null ) && ( this.Model.Root != null ) && ( this.Model.Root.Manager != null ) )
101+
this.SetLayoutItem( Model.Root.Manager.GetLayoutItemFromModel( Model ) );
101102
else
102-
SetLayoutItem( null );
103-
//UpdateLogicalParent();
103+
this.SetLayoutItem( null );
104104
}
105105

106106
#endregion

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/Layout/LayoutContent.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -923,10 +923,13 @@ public void DockAsDocument()
923923

924924
if( newParentPane != null )
925925
{
926+
Root.Manager.RaisePreviewDockEvent( this );
926927
newParentPane.Children.Add( this );
928+
Root.Manager.RaiseDockedEvent( this );
927929
}
928930
else
929931
{
932+
Root.Manager.RaisePreviewDockEvent( this );
930933
var mainLayoutPanel = new LayoutPanel() { Orientation = Orientation.Horizontal };
931934
if( root.RootPanel != null )
932935
{
@@ -938,6 +941,7 @@ public void DockAsDocument()
938941
mainLayoutPanel.Children.Add( ( ILayoutPanelElement )newParentPane );
939942

940943
newParentPane.Children.Add( this );
944+
Root.Manager.RaiseDockedEvent( this );
941945
}
942946

943947
root.CollectGarbage();
@@ -952,6 +956,8 @@ public void DockAsDocument()
952956
/// </summary>
953957
public void Dock()
954958
{
959+
Root.Manager.RaisePreviewDockEvent( this );
960+
955961
if( PreviousContainer != null )
956962
{
957963
var currentContainer = Parent as ILayoutContainer;
@@ -982,6 +988,7 @@ public void Dock()
982988
InternalDock();
983989
}
984990

991+
Root.Manager.RaiseDockedEvent( this );
985992
IsFloating = false;
986993

987994
if( this.Root != null )

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/App.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Toolkit for WPF
44
5-
Copyright (C) 2007-2022 Xceed Software Inc.
5+
Copyright (C) 2007-2023 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Toolkit for WPF
44
5-
Copyright (C) 2007-2022 Xceed Software Inc.
5+
Copyright (C) 2007-2023 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Toolkit for WPF
44
5-
Copyright (C) 2007-2022 Xceed Software Inc.
5+
Copyright (C) 2007-2023 Xceed Software Inc.
66
77
This program is provided to you under the terms of the XCEED SOFTWARE, INC.
88
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AutoSelectTextboxView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AutoSelectTextboxView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockPropertiesView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockPropertiesView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockSourcesView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockSourcesView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/AvalonDockView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorCustomContentTemplateView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorCustomContentTemplateView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorCustomContentView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorCustomContentView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/BusyIndicatorView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ButtonSpinnerView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ButtonSpinnerView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/CalculatorView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/CalculatorView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartAxisView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartAxisView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartLegendView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartLegendView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartSeriesBasicTypesView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartSeriesBasicTypesView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartSeriesDataPointsBindingView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartSeriesDataPointsBindingView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartStylingAxesGridView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartStylingAxesGridView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartStylingColumnSeriesView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartStylingColumnSeriesView.xaml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit.LiveExplorer/CodeFiles/ChartStylingLineSeriesView.xaml.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Toolkit for WPF
44

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

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

0 commit comments

Comments
 (0)