Skip to content

Commit 03d4331

Browse files
committed
V4.6.0 Released
1 parent 4b23a63 commit 03d4331

File tree

1,013 files changed

+22518
-7834
lines changed

Some content is hidden

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

1,013 files changed

+22518
-7834
lines changed

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Aero/AeroColors.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.AvalonDock.Themes.Aero/AeroTheme.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.AvalonDock.Themes.Aero/Brushes.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.AvalonDock.Themes.Aero/Controls/SplineBorder.cs

Lines changed: 1 addition & 29 deletions
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
@@ -32,17 +32,10 @@ public SplineBorder()
3232

3333
#region Thickness
3434

35-
/// <summary>
36-
/// Thickness Dependency Property
37-
/// </summary>
3835
public static readonly DependencyProperty ThicknessProperty =
3936
DependencyProperty.Register( "Thickness", typeof( double ), typeof( SplineBorder ),
4037
new FrameworkPropertyMetadata( ( double )1.0, FrameworkPropertyMetadataOptions.AffectsRender ) );
4138

42-
/// <summary>
43-
/// Gets or sets the Thickness property. This dependency property
44-
/// indicates the border thickness.
45-
/// </summary>
4639
public double Thickness
4740
{
4841
get
@@ -59,17 +52,10 @@ public double Thickness
5952

6053
#region Fill
6154

62-
/// <summary>
63-
/// Fill Dependency Property
64-
/// </summary>
6555
public static readonly DependencyProperty FillProperty =
6656
DependencyProperty.Register( "Fill", typeof( Brush ), typeof( SplineBorder ),
6757
new FrameworkPropertyMetadata( ( Brush )null, FrameworkPropertyMetadataOptions.AffectsRender ) );
6858

69-
/// <summary>
70-
/// Gets or sets the Fill property. This dependency property
71-
/// indicates the fill color.
72-
/// </summary>
7359
public Brush Fill
7460
{
7561
get
@@ -86,17 +72,10 @@ public Brush Fill
8672

8773
#region Stroke
8874

89-
/// <summary>
90-
/// Stroke Dependency Property
91-
/// </summary>
9275
public static readonly DependencyProperty StrokeProperty =
9376
DependencyProperty.Register( "Stroke", typeof( Brush ), typeof( SplineBorder ),
9477
new FrameworkPropertyMetadata( Brushes.Black, FrameworkPropertyMetadataOptions.AffectsRender ) );
9578

96-
/// <summary>
97-
/// Gets or sets the Stroke property. This dependency property
98-
/// indicates the stroke brush.
99-
/// </summary>
10079
public Brush Stroke
10180
{
10281
get
@@ -113,17 +92,10 @@ public Brush Stroke
11392

11493
#region BottomBorderMargin
11594

116-
/// <summary>
117-
/// BottomBorderMargin Dependency Property
118-
/// </summary>
11995
public static readonly DependencyProperty BottomBorderMarginProperty =
12096
DependencyProperty.Register( "BottomBorderMargin", typeof( double ), typeof( SplineBorder ),
12197
new FrameworkPropertyMetadata( ( double )0.0, FrameworkPropertyMetadataOptions.AffectsRender ) );
12298

123-
/// <summary>
124-
/// Gets or sets the BottomBorderMargin property. This dependency property
125-
/// indicates the adjustment for the bottom margin.
126-
/// </summary>
12799
public double BottomBorderMargin
128100
{
129101
get

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock.Themes.Aero/Properties/AssemblyInfo.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.AvalonDock.Themes.Aero/Theme.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.AvalonDock.Themes.Metro/Brushes.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.AvalonDock.Themes.Metro/MetroTheme.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.AvalonDock.Themes.Metro/Properties/AssemblyInfo.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.AvalonDock.Themes.Metro/Theme.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.AvalonDock.Themes.VS2010/Brushes.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.AvalonDock.Themes.VS2010/Properties/AssemblyInfo.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.AvalonDock.Themes.VS2010/Theme.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.AvalonDock.Themes.VS2010/VS2010Theme.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.AvalonDock/Commands/RelayCommand.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.AvalonDock/Controls/AnchorablePaneControlOverlayArea.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.AvalonDock/Controls/AnchorablePaneDropTarget.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.AvalonDock/Controls/AnchorablePaneTabPanel.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.AvalonDock/Controls/AnchorablePaneTitle.cs

Lines changed: 1 addition & 23 deletions
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
@@ -50,16 +50,9 @@ public AnchorablePaneTitle()
5050

5151
#region Model
5252

53-
/// <summary>
54-
/// Model Dependency Property
55-
/// </summary>
5653
public static readonly DependencyProperty ModelProperty = DependencyProperty.Register( "Model", typeof( LayoutAnchorable ), typeof( AnchorablePaneTitle ),
5754
new FrameworkPropertyMetadata( ( LayoutAnchorable )null, new PropertyChangedCallback( _OnModelChanged ) ) );
5855

59-
/// <summary>
60-
/// Gets or sets the Model property. This dependency property
61-
/// indicates model attached to this view.
62-
/// </summary>
6356
public LayoutAnchorable Model
6457
{
6558
get
@@ -77,9 +70,6 @@ private static void _OnModelChanged( DependencyObject sender, DependencyProperty
7770
( ( AnchorablePaneTitle )sender ).OnModelChanged( e );
7871
}
7972

80-
/// <summary>
81-
/// Provides derived classes an opportunity to handle changes to the Model property.
82-
/// </summary>
8373
protected virtual void OnModelChanged( DependencyPropertyChangedEventArgs e )
8474
{
8575
if( Model != null )
@@ -96,18 +86,11 @@ protected virtual void OnModelChanged( DependencyPropertyChangedEventArgs e )
9686

9787
#region LayoutItem
9888

99-
/// <summary>
100-
/// LayoutItem Read-Only Dependency Property
101-
/// </summary>
10289
private static readonly DependencyPropertyKey LayoutItemPropertyKey = DependencyProperty.RegisterReadOnly( "LayoutItem", typeof( LayoutItem ), typeof( AnchorablePaneTitle ),
10390
new FrameworkPropertyMetadata( ( LayoutItem )null ) );
10491

10592
public static readonly DependencyProperty LayoutItemProperty = LayoutItemPropertyKey.DependencyProperty;
10693

107-
/// <summary>
108-
/// Gets the LayoutItem property. This dependency property
109-
/// indicates the LayoutItem attached to this tag item.
110-
/// </summary>
11194
public LayoutItem LayoutItem
11295
{
11396
get
@@ -116,11 +99,6 @@ public LayoutItem LayoutItem
11699
}
117100
}
118101

119-
/// <summary>
120-
/// Provides a secure method for setting the LayoutItem property.
121-
/// This dependency property indicates the LayoutItem attached to this tag item.
122-
/// </summary>
123-
/// <param name="value">The new value for the property.</param>
124102
protected void SetLayoutItem( LayoutItem value )
125103
{
126104
this.SetValue( LayoutItemPropertyKey, value );

ExtendedWPFToolkitSolution/Src/Xceed.Wpf.AvalonDock/Controls/AutoHideWindowManager.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.AvalonDock/Controls/BindingHelper.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.AvalonDock/Controls/ContextMenuEx.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.AvalonDock/Controls/DockingManagerDropTarget.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.AvalonDock/Controls/DockingManagerOverlayArea.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.AvalonDock/Controls/DocumentPaneControlOverlayArea.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.AvalonDock/Controls/DocumentPaneDropAsAnchorableTarget.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.AvalonDock/Controls/DocumentPaneDropTarget.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.AvalonDock/Controls/DocumentPaneGroupDropTarget.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.AvalonDock/Controls/DocumentPaneTabPanel.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.AvalonDock/Controls/DragService.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

0 commit comments

Comments
 (0)