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

0 commit comments

Comments
 (0)