diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Samples.Modules.BusyIndicator.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Samples.Modules.BusyIndicator.csproj
index a491c78b..e7559aab 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Samples.Modules.BusyIndicator.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Samples.Modules.BusyIndicator.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml
index 43fc12c3..62f55f6f 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml
@@ -58,7 +58,7 @@
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj
index 07a30103..9437879b 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs
new file mode 100644
index 00000000..395eab49
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows.Data;
+using System.Globalization;
+using System.Windows;
+
+namespace Samples.Modules.Calculator.Converters
+{
+ class FormatStringToVisibilityConverter : IValueConverter
+ {
+ public object Convert( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ //When FormatString received is empty, make the Precision property Visible.
+ //This is to prevent something like this: Precision = "5" AND FormatString = "C2".
+ if( string.IsNullOrEmpty( ( string )value ) )
+ return Visibility.Visible;
+ return Visibility.Hidden;
+ }
+
+ public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj
index afe7e919..596eb33a 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
@@ -66,6 +66,7 @@
+
CalculatorNavItem.xaml
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml
index bf17aecd..87cf55a2 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml
@@ -22,8 +22,13 @@
xmlns:sample="clr-namespace:Samples.Infrastructure.Controls;assembly=Samples.Infrastructure"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="CalculatorUpDown"
+ xmlns:conv="clr-namespace:Samples.Modules.Calculator.Converters"
Description="The CalculatorUpDown provides a TextBox with button spinners that allow incrementing and decrementing numeric values by using the spinner buttons, keyboard up/down arrows, or mouse wheel. It also provides a Calculator dropdown which allows you to perform mathematical calculations.">
-
+
+
+
+
+
@@ -35,6 +40,7 @@
+
@@ -42,21 +48,26 @@
-
-
-
-
- Currency
- Fixed Point
+
+
+
+
+
+
+
+ None
+ Currency
+ Fixed Point
General
Number
- Percent
+ Percent
-
-
-
-
-
+
+
+
+
+
+
@@ -71,7 +82,8 @@
Minimum="{Binding Value, ElementName=_minimum}"
Precision="{Binding Value, ElementName=_precision}"
FormatString="{Binding SelectedItem.Tag, ElementName=_formatString}"
- Watermark="{Binding Text, ElementName=_watermark}" />
+ Watermark="{Binding Text, ElementName=_watermark}"
+ EnterClosesCalculator="{Binding IsChecked, ElementName=_enterClosesCalculator}"/>
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj
index 1c1495ad..92eb38eb 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj
@@ -40,9 +40,9 @@
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml
index 61eb908b..3e9b0c23 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml
@@ -46,17 +46,18 @@
+
-
-
-
-
+
+
+
+
+ Margin="5"/>
+ Margin="5"/>
+ Margin="5"/>
+ Margin="5"/>
+ Margin="5"/>
+ Margin="5"/>
+ IsChecked="{Binding IsDropDownOpen, ElementName=_checkComboBox}" />
+
+
+
+
+
@@ -143,6 +160,7 @@
-
+ IsDropDownOpen="false"
+ MaxDropDownHeight="100"/>
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Converters/IntToBoolConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Converters/IntToBoolConverter.cs
new file mode 100644
index 00000000..ea77743e
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Converters/IntToBoolConverter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows.Data;
+using System.Globalization;
+
+namespace Samples.Modules.ChildWindow.Converters
+{
+ class IntToBoolConverter : IValueConverter
+ {
+ public object Convert( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ int intReceived = (int)value;
+
+ if( intReceived == 1 )
+ return false;
+ else
+ return true;
+ }
+
+ public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj
index 38ddac54..8b38c906 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
@@ -76,6 +76,7 @@
NavigationView.xaml
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml
index aabbdf21..d7ae1097 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml
@@ -22,10 +22,13 @@
xmlns:sample="clr-namespace:Samples.Infrastructure.Controls;assembly=Samples.Infrastructure"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
+ xmlns:conv="clr-namespace:Samples.Modules.ChildWindow.Converters"
Title="ChildWindow"
Description="The ChildWindow can be used to create a window that is displayed within the bounds of a specific parent container.">
+
+
@@ -64,26 +67,26 @@
-
+
-
-
+
-
-
+
+
-
-
+
+
- False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml
index fd2e7bae..241bafbf 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml
@@ -23,6 +23,16 @@
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="Color Controls"
Description="The ColorCanvas and ColorPicker controls allow the user to input a color. Not shown in the sample are the ColorPicker's Available, Standard and Recent color lists, which are entirely customizable.">
+
+
+
@@ -68,13 +78,13 @@
HorizontalAlignment="Stretch"
Orientation="Horizontal" >
-
+
-
+
-
+
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj
index bdaad47d..4eaeeaf9 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj
@@ -61,6 +61,7 @@
Code
+
FullVersion.xaml
@@ -78,6 +79,10 @@
+
+ {72E591D6-8F83-4D8C-8F67-9C325E623234}
+ Xceed.Wpf.Toolkit
+
{63648392-6CE9-4A60-96D4-F9FD718D29B0}
Xceed.Wpf.DataGrid
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/UniqueIDCellValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/UniqueIDCellValidationRule.cs
new file mode 100644
index 00000000..7c8e29fe
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/UniqueIDCellValidationRule.cs
@@ -0,0 +1,60 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Xceed.Wpf.DataGrid.ValidationRules;
+using System.Windows.Controls;
+using System.Globalization;
+using Xceed.Wpf.DataGrid;
+using System.Data;
+
+namespace Samples.Modules.DataGrid
+{
+ public class UniqueIDCellValidationRule : CellValidationRule
+ {
+ public UniqueIDCellValidationRule()
+ {
+ }
+
+ public override ValidationResult Validate( object value, CultureInfo culture, CellValidationContext context )
+ {
+ // Get the DataItem from the context and cast it to a DataRow
+ DataRowView dataRowView = context.DataItem as DataRowView;
+
+ // Convert the value to a long to make sure it is numerical.
+ // When the value is not numerical, then an InvalidFormatException will be thrown.
+ // We let it pass unhandled to demonstrate that an exception can be thrown when validating
+ // and the grid will handle it nicely.
+ long id = Convert.ToInt64( value, CultureInfo.CurrentCulture );
+
+ // Try to find another row with the same ID
+ System.Data.DataRow[] existingRows = dataRowView.Row.Table.Select( context.Cell.FieldName + "=" + id.ToString( CultureInfo.InvariantCulture ) );
+
+ // If a row is found, we return an error
+ if( ( existingRows.Length != 0 ) && ( existingRows[ 0 ] != dataRowView.Row ) )
+ return new ValidationResult( false, "The value must be unique" );
+
+ // If no row was found, we return a ValidResult
+ return ValidationResult.ValidResult;
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml
index 676e3cf8..98352f54 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml
@@ -23,6 +23,7 @@
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
xmlns:compModel="clr-namespace:System.ComponentModel;assembly=WindowsBase"
+ xmlns:local="clr-namespace:Samples.Modules.DataGrid"
Title="DataGrid"
x:Name="_demo">
@@ -50,6 +51,16 @@ Note: The datagrid included in Xceed Extended WPF Toolkit Plus contains a subset
+
+
+
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj
index 24dd2df3..54ad641c 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml
index e54d3bf2..3e809803 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml
@@ -34,7 +34,12 @@
-
+
+
+
+
+
+
@@ -45,34 +50,47 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
@@ -102,13 +120,13 @@
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj
index e5baed58..ad9f1842 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj
@@ -40,9 +40,9 @@
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml
index 9d90d91f..8cdf1e5f 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml
@@ -58,7 +58,7 @@
-
+
@@ -76,7 +76,6 @@
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj
index cb22cc89..5bd2ec09 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj
@@ -40,9 +40,9 @@
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj
index c8047b8a..0ea3e3fe 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml
index 8a1cd2c4..9f23e579 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml
@@ -21,7 +21,49 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sample="clr-namespace:Samples.Infrastructure.Controls;assembly=Samples.Infrastructure"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
- Title="Numeric Controls">
+ xmlns:sys="clr-namespace:System;assembly=mscorlib"
+ xmlns:local="clr-namespace:Samples.Modules.Numeric.Views"
+ Title="Numeric Controls"
+ x:Name="_demo">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Infinity and -Infinity input will not be accepted if Maximum and/or Minimum values does not allow them.
+ HexNumber is not a valid choice when used with a DoubleUpDown (current control used in this sample). It will work with the following controls: IntegerUpDown, ByteUpDown, LongUpDown, and ShortUpDown.
+
+
+
@@ -47,44 +89,87 @@
-
+
+
+
-
-
-
+
+
+
+
+
-
-
- Currency
- Fixed Point
- General
- Number
- Percent
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml.cs
index 7c085060..3b2f766b 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml.cs
@@ -19,6 +19,9 @@
using Microsoft.Practices.Prism.Regions;
using Samples.Infrastructure.Controls;
+using System.Collections.Generic;
+using System.Globalization;
+using System;
namespace Samples.Modules.Numeric.Views
{
@@ -30,7 +33,36 @@ namespace Samples.Modules.Numeric.Views
{
public HomeView()
{
+ this.Cultures = new List() { new CultureInfo( "en-US" ),
+ new CultureInfo("en-GB"),
+ new CultureInfo("fr-FR"),
+ new CultureInfo("ar-DZ"),
+ new CultureInfo("zh-CN"),
+ new CultureInfo("cs-CZ") };
+
InitializeComponent();
}
+
+ public List Cultures
+ {
+ get;
+ private set;
+ }
+ }
+
+
+ public class FormatObject
+ {
+ public string Value
+ {
+ get;
+ set;
+ }
+
+ public string DisplayValue
+ {
+ get;
+ set;
+ }
}
}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs
new file mode 100644
index 00000000..055e79ea
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows.Data;
+using System.Globalization;
+using System.Windows;
+
+namespace Samples.Modules.Panels.Converters
+{
+ class ComboBoxToVisibilityConverter : IValueConverter
+ {
+ public object Convert( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ if( ( value is int ) && ( parameter is string )
+ && ( int )value == Int32.Parse( ( string )parameter ) )
+ {
+ return Visibility.Visible;
+ }
+
+ return Visibility.Collapsed;
+ }
+
+ public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture )
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AnimatedTimelinePanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AnimatedTimelinePanel.jpg
new file mode 100644
index 00000000..71165a01
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AnimatedTimelinePanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AutoStretchStackPanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AutoStretchStackPanel.jpg
new file mode 100644
index 00000000..f6665ca2
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AutoStretchStackPanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/CameraPanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/CameraPanel.jpg
new file mode 100644
index 00000000..9aeb5e85
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/CameraPanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Canvas.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Canvas.jpg
new file mode 100644
index 00000000..9c545706
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Canvas.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Carousel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Carousel.jpg
new file mode 100644
index 00000000..66e9f2b7
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Carousel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/DockPanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/DockPanel.jpg
new file mode 100644
index 00000000..2df201c9
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/DockPanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Grid.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Grid.jpg
new file mode 100644
index 00000000..34a0b8d1
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Grid.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/PerspectivePanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/PerspectivePanel.jpg
new file mode 100644
index 00000000..875e505b
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/PerspectivePanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RadialCanvas.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RadialCanvas.jpg
new file mode 100644
index 00000000..f9d2aec2
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RadialCanvas.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RelativeCanvas.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RelativeCanvas.jpg
new file mode 100644
index 00000000..0d2a1936
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RelativeCanvas.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackPanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackPanel.jpg
new file mode 100644
index 00000000..72ea46bb
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackPanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackedStackPanel.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackedStackPanel.jpg
new file mode 100644
index 00000000..354897e0
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackedStackPanel.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs
new file mode 100644
index 00000000..378ec58d
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs
@@ -0,0 +1,45 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using Microsoft.Practices.Prism.Regions;
+using Microsoft.Practices.Unity;
+using Samples.Infrastructure;
+using Samples.Infrastructure.Extensions;
+using Samples.Modules.Panels.Views;
+
+namespace Samples.Modules.Panels
+{
+ public class PanelsModule : ModuleBase
+ {
+ public PanelsModule( IUnityContainer container, IRegionManager regionManager )
+ : base( container, regionManager )
+ {
+ }
+
+ protected override void InitializeModule()
+ {
+ RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( SwitchPanelNavItem ) );
+ }
+
+ protected override void RegisterViewsAndTypes()
+ {
+ Container.RegisterNavigationType( typeof( SwitchPanelView ) );
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000..d4f01a3e
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle( "Samples.Modules.Panels" )]
+[assembly: AssemblyDescription( "" )]
+[assembly: AssemblyConfiguration( "" )]
+[assembly: AssemblyCompany( "" )]
+[assembly: AssemblyProduct( "Samples.Modules.Panels" )]
+[assembly: AssemblyCopyright( "Copyright © 2012" )]
+[assembly: AssemblyTrademark( "" )]
+[assembly: AssemblyCulture( "" )]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// 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 )]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[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)
+ 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)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion( "1.0.0.0" )]
+[assembly: AssemblyFileVersion( "1.0.0.0" )]
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Samples.Modules.Panels.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Samples.Modules.Panels.csproj
new file mode 100644
index 00000000..e35fa2bc
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Samples.Modules.Panels.csproj
@@ -0,0 +1,119 @@
+
+
+
+ Debug
+ AnyCPU
+ 8.0.30703
+ 2.0
+ {D51C9DFE-7661-4C32-A9D7-5772D366F578}
+ library
+ Properties
+ Samples.Modules.Panels
+ Samples.Modules.Panels
+ v4.0
+ Client
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+
+
+ true
+ full
+ false
+ bin\Debug\
+ TRACE;DEBUG
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
+
+
+ ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+
+
+ SwitchPanelNavItem.xaml
+
+
+ SwitchPanelView.xaml
+
+
+
+
+ Code
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+
+
+ {72E591D6-8F83-4D8C-8F67-9C325E623234}
+ Xceed.Wpf.Toolkit
+
+
+ {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
+ Samples.Infrastructure
+
+
+
+
+ xcopy "$(TargetDir)*.*" "$(SolutionDir)Src\Samples\Samples\bin\$(ConfigurationName)\" /Y
+xcopy "$(ProjectDir)Views" "$(SolutionDir)Src\Samples\Samples\bin\$(ConfigurationName)\Samples\$(ProjectName)\" /s /Y /I
+
+
+
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml
new file mode 100644
index 00000000..90e1bddf
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml.cs
new file mode 100644
index 00000000..3d33da11
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml.cs
@@ -0,0 +1,34 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using System.Windows.Controls;
+
+namespace Samples.Modules.Panels.Views
+{
+ ///
+ /// Interaction logic for CalculatorUpDownNavItem.xaml
+ ///
+ public partial class SwitchPanelNavItem : TreeViewItem
+ {
+ public SwitchPanelNavItem()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml
new file mode 100644
index 00000000..edb081ef
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml
@@ -0,0 +1,341 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Positions elements from left to right or up to down depending on the orientation and the available space. Breaks the content at the end of the line to wrap items to the next line.
+ This panel lays out its children with a random location and size.
+ Exactly like WPF's native Canvas panel, except that this panel can animate its children and be used inside a SwitchPanel.
+ Positions the elements in a carousel mode with a centered element in front.
+ Exactly like WPF's native DockPanel, except that this panel can animate its children and be used inside a SwitchPanel.
+ Exactly like WPF's native Grid panel, except that this panel can animate its children and be used inside a SwitchPanel.
+ Exactly like WPF's native StackPanel, except this panel can animate its children and be used inside SwitchPanel.
+ Lays out children in a series of stacked stackpanels.
+ This panel stretches the children in the orientation direction so that they completely fill the panel area.
+ A Panel which is similar to Canvas but it lays out its children relative to the panel's height and width.
+ Lays out its children in a circle based on panel size and/or properties set.
+ "CameraPanel lays out its children in a 3D-like space. You can give the children a 3D location and set the camera position for the panel.
+ Perspective panel positions its children in a perspective view with the possibility of rotating the background children.
+ Defines an area where items are positioned on a timeline.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WrapPanel
+ RandomPanel
+ Canvas
+ Carousel
+ DockPanel
+ Grid
+ StackPanel
+ StackedStackPanel
+ AutoStretchStackPanel
+ RelativeCanvas
+ RadialCanvas
+ CameraPanel
+ PerspectivePanel
+ AnimatedTimelinePanel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Click here for more details about Extended WPF Toolkit Plus.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml.cs
new file mode 100644
index 00000000..714190aa
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml.cs
@@ -0,0 +1,206 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using Microsoft.Practices.Prism.Regions;
+using Samples.Infrastructure.Controls;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System;
+using System.Windows;
+using Xceed.Wpf.Toolkit.Panels;
+using System.Collections.Generic;
+using Xceed.Wpf.Toolkit;
+using System.Text.RegularExpressions;
+using System.IO;
+using System.Diagnostics;
+using System.Windows.Media.Imaging;
+
+namespace Samples.Modules.Panels.Views
+{
+ ///
+ /// Interaction logic for SwitchPanelView.xaml
+ ///
+ [RegionMemberLifetime( KeepAlive = false )]
+ public partial class SwitchPanelView : DemoView
+ {
+ #region Members
+
+
+ #endregion
+
+ public SwitchPanelView()
+ {
+ InitializeComponent();
+ }
+
+ #region Event Handlers
+
+ private void Hyperlink_RequestNavigate( object sender, System.Windows.Navigation.RequestNavigateEventArgs e )
+ {
+ Process.Start( new ProcessStartInfo( e.Uri.AbsoluteUri ) );
+ e.Handled = true;
+ }
+
+ private void OnLayoutComboSelectionChanged( object sender, RoutedEventArgs e )
+ {
+ ComboBox comboBox = sender as ComboBox;
+ bool isPlusPanel = (comboBox.SelectedIndex >= 2);
+
+ if( _openSourceScreenShot != null )
+ _openSourceScreenShot.Visibility = isPlusPanel ? Visibility.Visible : Visibility.Collapsed;
+ if( _openSourceScreenShotDesc != null )
+ _openSourceScreenShotDesc.Visibility = isPlusPanel ? Visibility.Visible : Visibility.Collapsed;
+ if( _openSourceHyperlink != null )
+ _openSourceHyperlink.Visibility = isPlusPanel ? Visibility.Visible : Visibility.Collapsed;
+ if( _switchPanel != null )
+ _switchPanel.Visibility = isPlusPanel ? Visibility.Collapsed : Visibility.Visible;
+
+ if( isPlusPanel )
+ {
+ BitmapImage bitmapImage = new BitmapImage();
+ string desc;
+
+ bitmapImage.BeginInit();
+ switch( comboBox.SelectedIndex )
+ {
+ case 2:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\Canvas.jpg", UriKind.Relative );
+ desc = this.Resources[ "canvasPanelDescription" ] as string;
+ break;
+ case 3:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\Carousel.jpg", UriKind.Relative );
+ desc = this.Resources[ "carouselDescription" ] as string;
+ break;
+ case 4:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\DockPanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "dockPanelDescription" ] as string;
+ break;
+ case 5:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\Grid.jpg", UriKind.Relative );
+ desc = this.Resources[ "gridDescription" ] as string;
+ break;
+ case 6:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\StackPanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "stackPanelDescription" ] as string;
+ break;
+ case 7:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\StackedStackPanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "stackedStackPanelDescription" ] as string;
+ break;
+ case 8:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\AutoStretchStackPanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "autoStretchStackPanelDescription" ] as string;
+ break;
+ case 9:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\RelativeCanvas.jpg", UriKind.Relative );
+ desc = this.Resources[ "relativeCanvasDescription" ] as string;
+ break;
+ case 10:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\RadialCanvas.jpg", UriKind.Relative );
+ desc = this.Resources[ "radialCanvasDescription" ] as string;
+ break;
+ case 11:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\CameraPanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "cameraPanelDescription" ] as string;
+ break;
+ case 12:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\PerspectivePanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "perspectivePanelDescription" ] as string;
+ break;
+ case 13:
+ bitmapImage.UriSource = new Uri( "..\\OpenSourceImages\\AnimatedTimelinePanel.jpg", UriKind.Relative );
+ desc = this.Resources[ "animatedTimelinePanelDescription" ] as string;
+ break;
+ default: throw new InvalidDataException( "LayoutcomboBox.SelectedIndex is not valid." );
+ }
+ bitmapImage.EndInit();
+
+ if( _openSourceScreenShot != null )
+ _openSourceScreenShot.Source = bitmapImage;
+ if( _openSourceScreenShotDesc != null )
+ _openSourceScreenShotDesc.Text = desc;
+ }
+ }
+
+ private void OnSwitchPanelLayoutChanged( object sender, RoutedEventArgs e )
+ {
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #endregion
+
+ #region Methods (Private)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #endregion
+
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj
index 88590113..86d6afd7 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj
@@ -40,9 +40,9 @@
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Samples.Modules.PropertyGrid.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Samples.Modules.PropertyGrid.csproj
index 80990be6..be3aa4d4 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Samples.Modules.PropertyGrid.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Samples.Modules.PropertyGrid.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.fr.resx b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.fr.resx
index 16d80658..c162964d 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.fr.resx
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.fr.resx
@@ -156,4 +156,4 @@
(Non proposé)
-
+
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.resx b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.resx
index a4da3d0f..d4a8948e 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.resx
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DisplayLocalizationRes.resx
@@ -156,4 +156,4 @@
(Not listed)
-
+
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml.cs
index 063a6603..936a4cae 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml.cs
@@ -93,7 +93,9 @@ namespace Samples.Modules.PropertyGrid.Views
person.Spouse = new Person()
{
FirstName = "Jane",
- LastName = "Doe"
+ LastName = "Doe",
+ WritingFont = new FontFamily( "Arial" ),
+ WritingFontSize = 10.5
};
return person;
}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml
index cb0aa9a0..27f12704 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml
@@ -65,7 +65,7 @@
-
@@ -74,7 +74,7 @@
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Samples.Modules.Text.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Samples.Modules.Text.csproj
index 6ce027d8..9e4499ca 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Samples.Modules.Text.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Samples.Modules.Text.csproj
@@ -42,9 +42,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
@@ -78,8 +78,8 @@
MaskedTextBoxView.xaml
-
- MultiLineTextEditor.xaml
+
+ MultiLineTextEditorView.xaml
NavigationView.xaml
@@ -105,7 +105,7 @@
Designer
MSBuild:Compile
-
+
MSBuild:Compile
Designer
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml
index 6aba50d4..3ab8ab7e 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml
@@ -21,7 +21,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sample="clr-namespace:Samples.Infrastructure.Controls;assembly=Samples.Infrastructure"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
- xmlns:osb="clr-namespace:Xceed.Wpf.Toolkit.Obselete;assembly=WPFToolkit.Extended"
+ xmlns:osb="clr-namespace:Xceed.Wpf.Toolkit.Obselete;assembly=Xceed.Wpf.Toolkit"
xmlns:s="clr-namespace:System;assembly=mscorlib"
Title="MaskedTextBox"
Description="The MaskedTextBox control lets you display and edit values based on a mask.">
@@ -79,6 +79,7 @@
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditor.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml
similarity index 100%
rename from ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditor.xaml
rename to ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditor.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs
similarity index 87%
rename from ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditor.xaml.cs
rename to ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs
index bfa458c4..62380b31 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditor.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs
@@ -61,26 +61,26 @@ namespace Samples.Modules.Text.Views
List movieList = new List();
movieList.Add( new Movie()
{
- Title = "Lords Of The Ring",
+ Title = "Lord Of The Rings",
Review = "A great movie with many special effects.",
Rating = 9
} );
movieList.Add( new Movie()
{
Title = "Pirates Of The Caribbean",
- Review = "An epic pirate movie with ships, swords, explosion and a treasure.",
+ Review = "An epic pirate movie with ships, swords, explosions, and a treasure.",
Rating = 9.5
} );
movieList.Add( new Movie()
{
Title = "Batman",
- Review = "Batman returns after 8 years, stronger than ever, to deliver Gotham City from a new criminel.",
+ Review = "Batman returns after 8 years, stronger than ever, to deliver Gotham City from a new criminal.",
Rating = 7.8
} );
movieList.Add( new Movie()
{
Title = "Indiana Jones",
- Review = "Harrison Ford strikes back for full-pack action movie in the jungle to uncover a mysterious Crystal skull.",
+ Review = "Harrison Ford strikes back for an action-packed movie in the jungle to find a mysterious Crystal skull.",
Rating = 6.4
} );
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml
index e18d7a31..18964b94 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml
@@ -20,14 +20,13 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="clr-namespace:Samples.Modules.Text.Views"
- Header="Text" Tag="{x:Type views:HomeView}"
- Style="{StaticResource newFeature}" >
+ Header="Text" Tag="{x:Type views:HomeView}" >
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPicture.png b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPicture.png
new file mode 100644
index 00000000..ee33bc49
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPicture.png differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureA.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureA.jpg
new file mode 100644
index 00000000..2e6fb39c
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureA.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureB.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureB.jpg
new file mode 100644
index 00000000..af6c4cbb
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureB.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureC.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureC.jpg
new file mode 100644
index 00000000..30cf87da
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureC.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureD.jpg b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureD.jpg
new file mode 100644
index 00000000..c3cd5d33
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/NoPictureD.jpg differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/Working.png b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/Working.png
new file mode 100644
index 00000000..f3ee5513
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Images/Working.png differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000..021244fc
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs
@@ -0,0 +1,72 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using System.Reflection;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle( "Extended WPF Toolkit Themes Sample" )]
+[assembly: AssemblyDescription( "" )]
+[assembly: AssemblyConfiguration( "" )]
+[assembly: AssemblyCompany( "Xceed Software Inc." )]
+[assembly: AssemblyProduct( "Extended WPF Toolkit Themes Sample" )]
+[assembly: AssemblyCopyright( "Copyright © Xceed Software Inc. 2010-2012" )]
+[assembly: AssemblyTrademark( "" )]
+[assembly: AssemblyCulture( "" )]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// 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 )]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[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)
+ 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)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion( "1.0.0.0" )]
+[assembly: AssemblyFileVersion( "1.0.0.0" )]
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Samples.Modules.Themes.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Samples.Modules.Themes.csproj
new file mode 100644
index 00000000..6ee789df
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Samples.Modules.Themes.csproj
@@ -0,0 +1,134 @@
+
+
+
+ Debug
+ x86
+ 8.0.30703
+ 2.0
+ {31D6DE81-60F1-4481-BE1B-96768855DA4E}
+ Library
+ Properties
+ Samples.Modules.Themes
+ Samples.Modules.Themes
+ v4.0
+ Client
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+
+
+
+
+
+ true
+ bin\Debug\
+ DEBUG;TRACE
+ full
+ AnyCPU
+ bin\Debug\Samples.Modules.Themes.dll.CodeAnalysisLog.xml
+ true
+ GlobalSuppressions.cs
+ prompt
+ MinimumRecommendedRules.ruleset
+ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets
+ true
+ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules
+ true
+ false
+
+
+ bin\Release\
+ TRACE
+ true
+ pdbonly
+ AnyCPU
+ bin\Release\Samples.Modules.Themes.dll.CodeAnalysisLog.xml
+ true
+ GlobalSuppressions.cs
+ prompt
+ MinimumRecommendedRules.ruleset
+ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets
+ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules
+
+
+
+ ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
+
+
+ ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+ ..\..\..\..\Libs\Xceed.Wpf.DataGrid.Samples.SampleData.dll
+
+
+
+
+ Code
+
+
+
+
+ HomeView.xaml
+
+
+ NavigationView.xaml
+
+
+
+
+ {63648392-6CE9-4A60-96D4-F9FD718D29B0}
+ Xceed.Wpf.DataGrid
+
+
+ {72E591D6-8F83-4D8C-8F67-9C325E623234}
+ Xceed.Wpf.Toolkit
+
+
+ {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
+ Samples.Infrastructure
+
+
+
+
+
+
+
+
+
+
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+
+
+ xcopy "$(TargetDir)*.*" "$(SolutionDir)Src\Samples\Samples\bin\$(ConfigurationName)\" /Y
+xcopy "$(ProjectDir)Views" "$(SolutionDir)Src\Samples\Samples\bin\$(ConfigurationName)\Samples\$(ProjectName)\" /s /Y /I
+
+
+
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/ThemesModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/ThemesModule.cs
new file mode 100644
index 00000000..c1184bdd
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/ThemesModule.cs
@@ -0,0 +1,45 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using Microsoft.Practices.Prism.Regions;
+using Microsoft.Practices.Unity;
+using Samples.Infrastructure;
+using Samples.Infrastructure.Extensions;
+using Samples.Modules.Themes.Views;
+
+namespace Samples.Modules.Themes
+{
+ public class ThemesModule : ModuleBase
+ {
+ public ThemesModule( IUnityContainer container, IRegionManager regionManager )
+ : base( container, regionManager )
+ {
+ }
+
+ protected override void InitializeModule()
+ {
+ RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( NavigationView ) );
+ }
+
+ protected override void RegisterViewsAndTypes()
+ {
+ Container.RegisterNavigationType( typeof( HomeView ) );
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml
new file mode 100644
index 00000000..5cb997fa
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml
@@ -0,0 +1,34 @@
+
+
+
+
+ Click here for more details about Extended WPF Toolkit Plus.
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml.cs
new file mode 100644
index 00000000..4b2933cc
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml.cs
@@ -0,0 +1,55 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.ComponentModel;
+using Microsoft.Practices.Prism.Regions;
+using Samples.Infrastructure.Controls;
+using System.Windows;
+using System.Windows.Controls;
+using Xceed.Wpf.Toolkit;
+using Xceed.Wpf.Toolkit.Themes;
+using System.Windows.Controls.Primitives;
+using System;
+using Xceed.Wpf.DataGrid.Samples.SampleData;
+using System.Data;
+using System.Diagnostics;
+
+namespace Samples.Modules.Themes.Views
+{
+
+ ///
+ /// Interaction logic for HomeView.xaml
+ ///
+ [RegionMemberLifetime( KeepAlive = false )]
+ public partial class HomeView : DemoView
+ {
+ public HomeView()
+ {
+ InitializeComponent();
+ }
+
+ private void Hyperlink_RequestNavigate( object sender, System.Windows.Navigation.RequestNavigateEventArgs e )
+ {
+ Process.Start( new ProcessStartInfo( e.Uri.AbsoluteUri ) );
+ e.Handled = true;
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml
new file mode 100644
index 00000000..9522b100
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml.cs
new file mode 100644
index 00000000..c3e3e69e
--- /dev/null
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml.cs
@@ -0,0 +1,34 @@
+/************************************************************************
+
+ Extended WPF Toolkit
+
+ Copyright (C) 2010-2012 Xceed Software Inc.
+
+ This program is provided to you under the terms of the Microsoft Public
+ License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
+
+ This program can be provided to you by Xceed Software Inc. under a
+ proprietary commercial license agreement for use in non-Open Source
+ projects. The commercial version of Extended WPF Toolkit also includes
+ priority technical support, commercial updates, and many additional
+ useful WPF controls if you license Xceed Business Suite for WPF.
+
+ Visit http://xceed.com and follow @datagrid on Twitter.
+
+ **********************************************************************/
+
+using System.Windows.Controls;
+
+namespace Samples.Modules.Themes.Views
+{
+ ///
+ /// Interaction logic for NavigationView.xaml
+ ///
+ public partial class NavigationView : TreeViewItem
+ {
+ public NavigationView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj
index 3a727ab2..b7188052 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj
@@ -38,9 +38,9 @@
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj
index 227a858b..4a15ff41 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj
@@ -41,9 +41,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml
index 9daa021d..efb64af6 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml
@@ -21,22 +21,28 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sample="clr-namespace:Samples.Infrastructure.Controls;assembly=Samples.Infrastructure"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
- Title="Wizard">
-
-
-
-
-
-
-
-
+ Title="Wizard"
+ Description="The Wizard will explain how to do something in a series of steps.">
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml.cs
index 468cbaf6..eefa7a72 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml.cs
@@ -19,6 +19,8 @@
using Microsoft.Practices.Prism.Regions;
using Samples.Infrastructure.Controls;
+using System.Windows;
+using System;
namespace Samples.Modules.Wizard.Views
{
@@ -28,9 +30,39 @@ namespace Samples.Modules.Wizard.Views
[RegionMemberLifetime( KeepAlive = false )]
public partial class HomeView : DemoView
{
+ private Window _window;
+
public HomeView()
{
InitializeComponent();
}
+
+ private void OnButtonClick( object sender, EventArgs e )
+ {
+ Xceed.Wpf.Toolkit.Wizard wizard = Resources[ "_wizard" ] as Xceed.Wpf.Toolkit.Wizard;
+ if( wizard != null )
+ {
+ wizard.CurrentPage = wizard.Items[ 0 ] as Xceed.Wpf.Toolkit.WizardPage;
+
+ if( _window != null )
+ {
+ _window.Content = null;
+ _window = null;
+ }
+ _window = new Window();
+ _window.Title = "Wizard demonstration";
+ _window.Content = wizard;
+ _window.Width = 600;
+ _window.Height = 400;
+ _window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+ // Window will be closed by Wizard because FinishButtonClosesWindow = true and CancelButtonClosesWindow = true
+ _window.ShowDialog();
+ }
+ }
+
+ private void OnWizardHelp( object sender, EventArgs e )
+ {
+ System.Windows.MessageBox.Show( "This is the Help for the Wizard\n\n\n\n\n", "Wizard Help" );
+ }
}
}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj
index bea8ae89..58d7702f 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj
@@ -41,9 +41,9 @@
False
..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Controls/DemoView.cs b/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Controls/DemoView.cs
index 8816daad..2022fa5b 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Controls/DemoView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Controls/DemoView.cs
@@ -90,6 +90,19 @@ namespace Samples.Infrastructure.Controls
}
}
+ public static readonly DependencyProperty VerticalScrollBarVisibilityProperty = DependencyProperty.Register( "VerticalScrollBarVisibility", typeof( ScrollBarVisibility ), typeof( DemoView ), new UIPropertyMetadata( ScrollBarVisibility.Auto ) );
+ public ScrollBarVisibility VerticalScrollBarVisibility
+ {
+ get
+ {
+ return ( ScrollBarVisibility )GetValue( VerticalScrollBarVisibilityProperty );
+ }
+ set
+ {
+ SetValue( VerticalScrollBarVisibilityProperty, value );
+ }
+ }
+
#endregion //Properties
#region Constructors
@@ -112,14 +125,14 @@ namespace Samples.Infrastructure.Controls
{
base.OnContentChanged( oldContent, newContent );
//the parent of the content will be the View
- ResolveContentCode( ( newContent as FrameworkElement ).Parent );
+ UpdateContentCode( ( newContent as FrameworkElement ).Parent );
}
#endregion //Base Class Overrides
#region Methods
- private void ResolveContentCode( object newContent )
+ private void UpdateContentCode( object newContent )
{
//get the type of the content loaded in the ContentRegion
var type = newContent.GetType();
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Themes/Generic.xaml
index 7c3a5685..0493fffa 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Themes/Generic.xaml
@@ -138,7 +138,7 @@
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples/App.config b/ExtendedWPFToolkitSolution/Src/Samples/Samples/App.config
index 68914990..fce62aad 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples/App.config
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples/App.config
@@ -18,9 +18,11 @@
+
+
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TextBlockStyles.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TextBlockStyles.xaml
index 1aa25218..a418e505 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TextBlockStyles.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TextBlockStyles.xaml
@@ -26,4 +26,13 @@
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TreeViewStyles.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TreeViewStyles.xaml
index 74e50651..a507da3e 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TreeViewStyles.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Resources/TreeViewStyles.xaml
@@ -18,8 +18,11 @@
********************************************************************-->
+
+
+
-
+
@@ -95,8 +98,6 @@
+
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Samples.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Samples.csproj
index b37c4d80..348d93e8 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Samples.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Samples.csproj
@@ -87,9 +87,9 @@
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
{A4A049A4-665A-4651-9046-7D06E9D0CCDC}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Shell.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Shell.xaml
index 5c2a5dca..85c987d7 100644
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples/Shell.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Samples/Samples/Shell.xaml
@@ -22,7 +22,7 @@
xmlns:infCommands="clr-namespace:Samples.Infrastructure.Commands;assembly=Samples.Infrastructure"
xmlns:prism="http://www.codeplex.com/CompositeWPF"
Background="Black"
- Title="Extended WPF Toolkit - Samples" Height="768" Width="1024" >
+ Title="Extended WPF Toolkit - Samples" Height="768" Width="1050" >
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/EmptyDataItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/EmptyDataItem.cs
index 7ab602d5..3e4dde5a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/EmptyDataItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/EmptyDataItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualList.cs
index de00e5b3..6b34ba11 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListEnumerator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListEnumerator.cs
index 8e940772..7f750628 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListEnumerator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListEnumerator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListTableOfContent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListTableOfContent.cs
index 2b4ef5d3..d7ac905d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListTableOfContent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualListTableOfContent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPage.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPage.cs
index 1fc98dde..d3a5aaad 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPage.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPage.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPageManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPageManager.cs
index 1262765d..ba07bd50 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPageManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualPageManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemInfo.cs
index 9ab7e133..05eb1109 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemValueCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemValueCollection.cs
index 067cbfa1..b58e9240 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemValueCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(DataVirtualization)/VirtualizedItemValueCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataGridForeignKeyDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataGridForeignKeyDescription.cs
index 1488fd8d..e55aa52e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataGridForeignKeyDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataGridForeignKeyDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataTableForeignKeyDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataTableForeignKeyDescription.cs
index 761f46a9..fa7d6a38 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataTableForeignKeyDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/(ForeignKeys)/DataTableForeignKeyDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncCommitInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncCommitInfo.cs
index d128eeb2..32e57c8f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncCommitInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncCommitInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfo.cs
index ea20ca80..af11e831 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfoWeakComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfoWeakComparer.cs
index 38752b83..4798fa7e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfoWeakComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AsyncQueryInfoWeakComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AutoFilterValuesChangedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AutoFilterValuesChangedEventArgs.cs
index f06d7219..313447ee 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AutoFilterValuesChangedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/AutoFilterValuesChangedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/BindingPathValueExtractor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/BindingPathValueExtractor.cs
index 20f649f4..e19eaf81 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/BindingPathValueExtractor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/BindingPathValueExtractor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CollectionViewGroupExtensions.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CollectionViewGroupExtensions.cs
index 198326ed..0114466a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CollectionViewGroupExtensions.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CollectionViewGroupExtensions.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CommitItemsEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CommitItemsEvent.cs
index 877320c3..f35ac77e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CommitItemsEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CommitItemsEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfiguration.cs
index 39730f21..58bdf23f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfigurationCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfigurationCollection.cs
index 82dccc5b..ebc1b90f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfigurationCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemConfigurationCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemFilterEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemFilterEventArgs.cs
index 0eec28ac..c8a8814a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemFilterEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/CustomDistinctValueItemFilterEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionView.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionView.cs
index be4e42f5..11a1690f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionView.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBase.cs
index 1109f868..ea25ec26 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBaseDataProvider.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBaseDataProvider.cs
index 3a6beadf..e32413a8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBaseDataProvider.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewBaseDataProvider.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewDataProvider.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewDataProvider.cs
index 28f50240..757b0506 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewDataProvider.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewDataProvider.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewEnumerator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewEnumerator.cs
index d4dd9815..514bb4e0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewEnumerator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewEnumerator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroup.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroup.cs
index 3a131256..af81b1f3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroup.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroup.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupRoot.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupRoot.cs
index 87867c54..acd60493 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupRoot.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupRoot.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupSort.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupSort.cs
index f98798e9..5da6308e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupSort.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewGroupSort.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSort.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSort.cs
index 850e34da..d7a431dd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSort.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSort.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSource.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSource.cs
index 571a7f80..2ac951e2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSource.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSource.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSourceBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSourceBase.cs
index 42ce4d6a..8fa2a03f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSourceBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCollectionViewSourceBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCommittingNewItemEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCommittingNewItemEvent.cs
index ddc531fb..b8a8e5ce 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCommittingNewItemEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCommittingNewItemEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCreatingNewItemEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCreatingNewItemEvent.cs
index f0e91bde..31e5e524 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCreatingNewItemEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridCreatingNewItemEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescription.cs
index 848848d5..348d5763 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescriptionCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescriptionCollection.cs
index a1f672fd..008387dc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescriptionCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridDetailDescriptionCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupDescription.cs
index 2ab17ef6..b0691eff 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupInfo.cs
index 2f81f1d9..7cdc6f8d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridGroupInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemCancelEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemCancelEvent.cs
index 57915ea4..9d60edd8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemCancelEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemCancelEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemEvent.cs
index 71fe275f..474489b7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemHandledEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemHandledEvent.cs
index 631979b6..dd568e77 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemHandledEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemHandledEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.PropertyDescriptorFromItemProperty.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.PropertyDescriptorFromItemProperty.cs
index cc0e0fba..717bbfc4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.PropertyDescriptorFromItemProperty.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.PropertyDescriptorFromItemProperty.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.cs
index f63cf329..3e617912 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemProperty.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.PropertyDescriptorFromItemPropertyBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.PropertyDescriptorFromItemPropertyBase.cs
index 346a1cd2..a120121f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.PropertyDescriptorFromItemPropertyBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.PropertyDescriptorFromItemPropertyBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.cs
index f045af49..92c8855c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCollection.cs
index cc82f558..e26e44fb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCommittingValue.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCommittingValue.cs
index 176d73df..9af86878 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCommittingValue.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyCommittingValue.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyDictionary.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyDictionary.cs
index c60207eb..9bfd6cf7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyDictionary.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyDictionary.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyQueryValueEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyQueryValueEvent.cs
index d20262b8..f72532ac 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyQueryValueEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemPropertyQueryValueEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemRemovedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemRemovedEvent.cs
index 88ebf001..6fb6d533 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemRemovedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridItemRemovedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridLINQPageManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridLINQPageManager.cs
index 0ebd7eed..afcfd996 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridLINQPageManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridLINQPageManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManager.cs
index 1dcde2cc..9493af15 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManagerBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManagerBase.cs
index 23029f9d..c6faa9a7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManagerBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridPageManagerBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridRemovingItemEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridRemovingItemEvent.cs
index 30e74826..e8cbd9e0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridRemovingItemEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridRemovingItemEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridSortDescriptionCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridSortDescriptionCollection.cs
index c18a9bc3..f28d41bb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridSortDescriptionCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridSortDescriptionCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridUnboundItemProperty.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridUnboundItemProperty.cs
index f9750c35..37863d03 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridUnboundItemProperty.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridUnboundItemProperty.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionView.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionView.cs
index 8b6981dd..2e6922a2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionView.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewBase.cs
index 138dcd40..3935e610 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewDataProvider.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewDataProvider.cs
index de7522d4..c94a324e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewDataProvider.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewDataProvider.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroup.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroup.cs
index 2e201425..48c2871b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroup.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroup.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupBase.cs
index f530c8dd..9a7cace6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupRoot.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupRoot.cs
index 91208bbc..0dbb38c0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupRoot.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewGroupRoot.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSource.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSource.cs
index a8f6af0b..acc6151d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSource.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSource.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSourceBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSourceBase.cs
index 03a782d2..69deec35 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSourceBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingCollectionViewSourceBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -31,7 +28,6 @@ namespace Xceed.Wpf.DataGrid
{
public DataGridVirtualizingCollectionViewSourceBase()
{
-
this.Source = null;
m_isInitialized = true;
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionView.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionView.cs
index 3f05b78a..c0ef6b08 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionView.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewDataProvider.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewDataProvider.cs
index e111de8b..9b432e4b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewDataProvider.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewDataProvider.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroup.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroup.cs
index 78a3b3df..bd6266d4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroup.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroup.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroupRoot.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroupRoot.cs
index 3cfeb821..b281b26b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroupRoot.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewGroupRoot.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewSource.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewSource.cs
index 28999fce..e1209be5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewSource.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataGridVirtualizingQueryableCollectionViewSource.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRelationDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRelationDetailDescription.cs
index ca652c74..19b37ed4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRelationDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRelationDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRowColumnPropertyDescriptor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRowColumnPropertyDescriptor.cs
index b40f714b..f8a132ed 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRowColumnPropertyDescriptor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DataRowColumnPropertyDescriptor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperation.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperation.cs
index 8874340e..02e1a383 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperation.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperation.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperationManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperationManager.cs
index 1db59c40..ec7aa9ab 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperationManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DeferredOperationManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DistinctValuesDictionary.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DistinctValuesDictionary.cs
index 85378632..054b802e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DistinctValuesDictionary.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/DistinctValuesDictionary.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EmptyDataItemSafePropertyDescriptor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EmptyDataItemSafePropertyDescriptor.cs
index 8a5aaf31..3a032fdf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EmptyDataItemSafePropertyDescriptor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EmptyDataItemSafePropertyDescriptor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EntityDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EntityDetailDescription.cs
index 8e3bd4bb..7b04871d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EntityDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EntityDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EnumerableDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EnumerableDetailDescription.cs
index 16d29735..e2639f3c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EnumerableDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/EnumerableDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupDescriptionCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupDescriptionCollection.cs
index b896f4ac..4a9ebede 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupDescriptionCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupDescriptionCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupNameCountPair.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupNameCountPair.cs
index ffe8251b..4eba5935 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupNameCountPair.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupNameCountPair.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupSortComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupSortComparer.cs
index 7b80cb03..8277ad7b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupSortComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/GroupSortComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/JaggedArrayPropertyDescriptor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/JaggedArrayPropertyDescriptor.cs
index 0a382cea..023df14a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/JaggedArrayPropertyDescriptor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/JaggedArrayPropertyDescriptor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/ListSourceDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/ListSourceDetailDescription.cs
index 4f406ff1..8a97b5d9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/ListSourceDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/ListSourceDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/OptimizedReadOnlyObservableCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/OptimizedReadOnlyObservableCollection.cs
index 821a5852..a3e2519f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/OptimizedReadOnlyObservableCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/OptimizedReadOnlyObservableCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyDetailDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyDetailDescription.cs
index 140e944c..a065c06c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyDetailDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyDetailDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyRelationAttribute.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyRelationAttribute.cs
index f40950c8..b30e22e6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyRelationAttribute.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/PropertyRelationAttribute.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryAutoFilterDistinctValuesEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryAutoFilterDistinctValuesEvent.cs
index e3e8eaae..985f43b0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryAutoFilterDistinctValuesEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryAutoFilterDistinctValuesEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryDistinctValueEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryDistinctValueEventArgs.cs
index d63d41a3..e84052ee 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryDistinctValueEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryDistinctValueEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryEntityDetailsEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryEntityDetailsEventArgs.cs
index 4365ef22..922ffa2a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryEntityDetailsEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryEntityDetailsEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryGroupsEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryGroupsEventArgs.cs
index 7782ea2e..65faba13 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryGroupsEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryGroupsEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemCountEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemCountEvent.cs
index b35d1563..0530d5b4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemCountEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemCountEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemsEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemsEvent.cs
index 331483ce..015a82f5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemsEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryItemsEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryableExtensions.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryableExtensions.cs
index 6690d2c0..62e02d7a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryableExtensions.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/QueryableExtensions.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItem.cs
index f752bbfb..5924dde0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemIndexComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemIndexComparer.cs
index ce8d4f7a..0c5f5ea0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemIndexComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemIndexComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemSortComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemSortComparer.cs
index 2d4c52ba..761f2e5f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemSortComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/RawItemSortComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SelfPropertyDescriptor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SelfPropertyDescriptor.cs
index c3fd80c0..1993460f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SelfPropertyDescriptor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SelfPropertyDescriptor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortDescriptionsSyncContext.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortDescriptionsSyncContext.cs
index 7dd423c3..218e6a7d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortDescriptionsSyncContext.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortDescriptionsSyncContext.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortedDescriptionInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortedDescriptionInfo.cs
index aa2f94fe..fe697cf4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortedDescriptionInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SortedDescriptionInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SourceItemCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SourceItemCollection.cs
index 6679204d..727dc56e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SourceItemCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/SourceItemCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/StatResultComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/StatResultComparer.cs
index 8b0b8009..7e69d1ab 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/StatResultComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/StatResultComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataItem.cs
index dc23b7a3..a4931f9d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataRowPropertyDescriptor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataRowPropertyDescriptor.cs
index 7e3aebd3..900aa7a1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataRowPropertyDescriptor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(CollectionView)/UnboundDataRowPropertyDescriptor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/DataTableForeignKeyConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/DataTableForeignKeyConverter.cs
index 1c669c57..cc3ecf73 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/DataTableForeignKeyConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/DataTableForeignKeyConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConfiguration.cs
index 94f5c402..7c1ca2f2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyContentControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyContentControl.cs
index fab8b773..e4b83309 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyContentControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyContentControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConverter.cs
index d05dd26b..537f1397 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyGroupContentControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyGroupContentControl.cs
index 1652236d..b4f3c311 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyGroupContentControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyGroupContentControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyScrollTipContentControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyScrollTipContentControl.cs
index 3312086d..a3d66220 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyScrollTipContentControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(ForeignKeys)/ForeignKeyScrollTipContentControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CollectionGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CollectionGeneratorNode.cs
index 8641d0a9..78683278 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CollectionGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CollectionGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthChangedHandler.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthChangedHandler.cs
index f5c6aadb..dd262b3c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthChangedHandler.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthChangedHandler.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthEventManager.cs
index b0546ec7..62f5dbdd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ColumnActualWidthEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ContainersRemovedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ContainersRemovedEventArgs.cs
index a2c500cf..f3714edc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ContainersRemovedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ContainersRemovedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CurrentColumnChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CurrentColumnChangedEventManager.cs
index f0ba68fc..99a6baef 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CurrentColumnChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CurrentColumnChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomGeneratorChangedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomGeneratorChangedEventArgs.cs
index 99ab2a9f..be25a5ff 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomGeneratorChangedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomGeneratorChangedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomItemContainerGenerator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomItemContainerGenerator.cs
index 620cd2bc..4acb1605 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomItemContainerGenerator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/CustomItemContainerGenerator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DetailGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DetailGeneratorNode.cs
index baa52c53..cb8a7794 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DetailGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DetailGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventArgs.cs
index 4655a9a0..c8f6a966 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventManager.cs
index 24e145af..4f15ed6a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/DistinctValuesRequestedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ExpansionStateEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ExpansionStateEventArgs.cs
index 91d5bc88..de2f5e65 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ExpansionStateEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ExpansionStateEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNode.cs
index fdfbf487..a6765d7a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeFactory.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeFactory.cs
index a15621d8..fb20f0fb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeFactory.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeFactory.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeHelper.cs
index fc68d1dd..0cf74a46 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GeneratorNodeHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupGeneratorNode.cs
index 8ff7103b..f46b1517 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItem.cs
index 38bba9c3..ffd687d0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItemTemplate.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItemTemplate.cs
index 72f8f849..60455e21 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItemTemplate.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupHeaderFooterItemTemplate.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupNamesTreeKey.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupNamesTreeKey.cs
index d4210c2c..bc27b129 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupNamesTreeKey.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/GroupNamesTreeKey.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/HeadersFootersGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/HeadersFootersGeneratorNode.cs
index 63469bd9..064a0aa7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/HeadersFootersGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/HeadersFootersGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ICustomItemContainerGenerator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ICustomItemContainerGenerator.cs
index 3e8925f6..07354a26 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ICustomItemContainerGenerator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ICustomItemContainerGenerator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/IInhibitGenPosToIndexUpdating.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/IInhibitGenPosToIndexUpdating.cs
index 155cb604..2b98bb20 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/IInhibitGenPosToIndexUpdating.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/IInhibitGenPosToIndexUpdating.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemContextVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemContextVisitor.cs
index a7912a6f..93f882a7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemContextVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemContextVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemsGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemsGeneratorNode.cs
index 25458db4..6a09dae4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemsGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/ItemsGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NamesTreeGroupFinderVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NamesTreeGroupFinderVisitor.cs
index 206974f3..7d411049 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NamesTreeGroupFinderVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NamesTreeGroupFinderVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NotifyCollectionChangedGeneratorNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NotifyCollectionChangedGeneratorNode.cs
index 9988c5a9..58590ce3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NotifyCollectionChangedGeneratorNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/NotifyCollectionChangedGeneratorNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RangeSelectionVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RangeSelectionVisitor.cs
index 51e34108..bc3fd563 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RangeSelectionVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RangeSelectionVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventArgs.cs
index faaadf1c..0d2e423a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventManager.cs
index 01e97756..ae8b1c55 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/RealizedContainersRequestedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreDataGridContextStateVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreDataGridContextStateVisitor.cs
index 3da0f4ab..7d34dee8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreDataGridContextStateVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreDataGridContextStateVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreGlobalStateVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreGlobalStateVisitor.cs
index 5fc6df4e..58eb022a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreGlobalStateVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreGlobalStateVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreStateVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreStateVisitor.cs
index 7137fc7f..386d7a3f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreStateVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SaveRestoreStateVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SelectAllVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SelectAllVisitor.cs
index 93eb282d..18020348 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SelectAllVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/SelectAllVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedComparer.cs
index 6413b3e7..e4fcfa8d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedReverseComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedReverseComparer.cs
index 2076b7ad..24a84a78 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedReverseComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedReverseComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedStruct.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedStruct.cs
index 27fb84d9..bbabd709 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedStruct.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/StickyContainerGeneratedStruct.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibilityChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibilityChangedEventManager.cs
index 83a71df5..5051483c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibilityChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibilityChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibleColumnsUpdatedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibleColumnsUpdatedEventManager.cs
index e4669df5..a12c382e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibleColumnsUpdatedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/VisibleColumnsUpdatedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/WeakDataGridContextKey.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/WeakDataGridContextKey.cs
index 5932062e..1822c2a2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/WeakDataGridContextKey.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(Generator)/WeakDataGridContextKey.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/AutoFilterModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/AutoFilterModeEnum.cs
index 9faca5ca..9c0ed0b6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/AutoFilterModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/AutoFilterModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CellEditorDisplayConditionsEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CellEditorDisplayConditionsEnum.cs
index c15ee513..e0bdbcc6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CellEditorDisplayConditionsEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CellEditorDisplayConditionsEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ColumnWidthUnitTypeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ColumnWidthUnitTypeEnum.cs
index 14b11a3e..c5a17ad8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ColumnWidthUnitTypeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ColumnWidthUnitTypeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CommitModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CommitModeEnum.cs
index 3f0f26b4..66adeda0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CommitModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CommitModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CompareResultEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CompareResultEnum.cs
index 1d7431b3..771c12f9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CompareResultEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/CompareResultEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ConnectionLineAlignmentEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ConnectionLineAlignmentEnum.cs
index e12768c3..2482ac38 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ConnectionLineAlignmentEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ConnectionLineAlignmentEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridConnectionStateEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridConnectionStateEnum.cs
index a0be0e73..74d72dc0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridConnectionStateEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridConnectionStateEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridContextVisitorTypeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridContextVisitorTypeEnum.cs
index a40ee2cb..5ba4c25a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridContextVisitorTypeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridContextVisitorTypeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridUpdateSourceTriggerEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridUpdateSourceTriggerEnum.cs
index d5fc347d..04d899bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridUpdateSourceTriggerEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DataGridUpdateSourceTriggerEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DeletingSelectedItemErrorActionEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DeletingSelectedItemErrorActionEnum.cs
index ed3a65ab..0b531929 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DeletingSelectedItemErrorActionEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DeletingSelectedItemErrorActionEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesConstraintEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesConstraintEnum.cs
index 0d3f3dbf..918c08cd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesConstraintEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesConstraintEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesUpdateModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesUpdateModeEnum.cs
index 362fb6be..8a1b11fb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesUpdateModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesUpdateModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DropMarkAlignmentEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DropMarkAlignmentEnum.cs
index 899d6c28..c3458fc4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DropMarkAlignmentEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/DropMarkAlignmentEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/EditTriggersEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/EditTriggersEnum.cs
index 6bacafaa..4f9ce0ed 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/EditTriggersEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/EditTriggersEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterCriteriaModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterCriteriaModeEnum.cs
index c85b38e3..1f55b0dd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterCriteriaModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterCriteriaModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterOperatorPrecedenceEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterOperatorPrecedenceEnum.cs
index 0ca84fa3..d7a63797 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterOperatorPrecedenceEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterOperatorPrecedenceEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterTokenPriorityEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterTokenPriorityEnum.cs
index 7db43dd1..a0c47125 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterTokenPriorityEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/FilterTokenPriorityEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/GeneratorNodeTypeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/GeneratorNodeTypeEnum.cs
index f7212e3a..66352507 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/GeneratorNodeTypeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/GeneratorNodeTypeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/InsertionModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/InsertionModeEnum.cs
index d1e6d85f..9ffe71eb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/InsertionModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/InsertionModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ItemScrollingBehaviorEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ItemScrollingBehaviorEnum.cs
index 6edb9200..42f4bf1d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ItemScrollingBehaviorEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ItemScrollingBehaviorEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/NavigationBehaviorEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/NavigationBehaviorEnum.cs
index cc1452cf..ad5baa51 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/NavigationBehaviorEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/NavigationBehaviorEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PagingBehaviorEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PagingBehaviorEnum.cs
index b92d9440..a4b8883f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PagingBehaviorEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PagingBehaviorEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PrimaryAxisEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PrimaryAxisEnum.cs
index b7153c63..d69d2d90 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PrimaryAxisEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/PrimaryAxisEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollDirectionEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollDirectionEnum.cs
index 6181e51b..0fae7079 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollDirectionEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollDirectionEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollOrientationEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollOrientationEnum.cs
index 686d830d..6b2b6c4d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollOrientationEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ScrollOrientationEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SelectionUnitEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SelectionUnitEnum.cs
index 9ac97835..9089399a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SelectionUnitEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SelectionUnitEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SortDirectionEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SortDirectionEnum.cs
index 80088380..738c6c35 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SortDirectionEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/SortDirectionEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ValidationModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ValidationModeEnum.cs
index ee5d8fc1..3d24e409 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ValidationModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/(enums)/ValidationModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGesture.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGesture.cs
index 87760970..6af04262 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGesture.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGesture.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGestureCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGestureCollection.cs
index a80c8907..c0b8097e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGestureCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ActivationGestureCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AddingNewDataItemEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AddingNewDataItemEvent.cs
index 6809d4fc..85da6bf6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AddingNewDataItemEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AddingNewDataItemEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AllowDetailToggleChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AllowDetailToggleChangedEventManager.cs
index 4159d427..eb05d3f0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AllowDetailToggleChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AllowDetailToggleChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfo.cs
index c3c19fcc..0b2ede2d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -22,7 +19,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
- public const string BaseVersion = "1.8";
+ public const string BaseVersion = "1.9";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion + ".0.0";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfoCommon.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfoCommon.cs
index d9308cb5..e67d3d81 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfoCommon.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfoCommon.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationPeerExtensions.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationPeerExtensions.cs
index ab51ff3c..d9a46b64 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationPeerExtensions.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationPeerExtensions.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationQueryEvents.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationQueryEvents.cs
index 37161f32..8f91b1f0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationQueryEvents.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/AutomationQueryEvents.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/CellAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/CellAutomationPeer.cs
index e1583c2e..776facf7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/CellAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/CellAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerCellAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerCellAutomationPeer.cs
index 83f822b3..80f0cfb6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerCellAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerCellAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerRowAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerRowAutomationPeer.cs
index b0bfc836..3099effd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerRowAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/ColumnManagerRowAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridContextAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridContextAutomationPeer.cs
index 5924dbea..ffb9551e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridContextAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridContextAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridControlAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridControlAutomationPeer.cs
index 11d942ce..98fdb58d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridControlAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridControlAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridGroupAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridGroupAutomationPeer.cs
index 1a6d3cb4..17246c2c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridGroupAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridGroupAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemAutomationPeer.cs
index c3e150a1..01b7466c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemCellAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemCellAutomationPeer.cs
index 39892c5d..d25dd7f5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemCellAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/DataGridItemCellAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/HeaderFooterItemAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/HeaderFooterItemAutomationPeer.cs
index bf15417f..f492f5a7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/HeaderFooterItemAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/HeaderFooterItemAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryAutomationIdRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryAutomationIdRoutedEventArgs.cs
index 3b77e6b7..647cffe4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryAutomationIdRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryAutomationIdRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryHelpTextRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryHelpTextRoutedEventArgs.cs
index a1b4f5ef..a80a163a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryHelpTextRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryHelpTextRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemStatusRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemStatusRoutedEventArgs.cs
index 3c9e9838..b7cfb798 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemStatusRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemStatusRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemTypeRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemTypeRoutedEventArgs.cs
index b7166e5b..abc41eb1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemTypeRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryItemTypeRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryNameRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryNameRoutedEventArgs.cs
index 065aaa45..60023a73 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryNameRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/QueryNameRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/RowAutomationPeer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/RowAutomationPeer.cs
index 61fc6c3e..e1cda763 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/RowAutomationPeer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Automation/RowAutomationPeer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CanBeCurrentWhenReadOnlyChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CanBeCurrentWhenReadOnlyChangedEventManager.cs
index fa33b19a..1de65995 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CanBeCurrentWhenReadOnlyChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CanBeCurrentWhenReadOnlyChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CancelRoutedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CancelRoutedEvent.cs
index 95c7871e..7e565414 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CancelRoutedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CancelRoutedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Cell.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Cell.cs
index 948dbc27..519dc1cc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Cell.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Cell.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellCollection.cs
index 78244e39..a93f5865 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentPresenter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentPresenter.cs
index 334e054c..56616e0c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentPresenter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentPresenter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentTemplateChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentTemplateChangedEventManager.cs
index 8eddec54..2f6a7ddb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentTemplateChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellContentTemplateChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditor.cs
index 113c6510..acd0f66a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorContext.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorContext.cs
index f9aa4ff9..2e9a87df 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorContext.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorContext.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorDisplayConditionsChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorDisplayConditionsChangedEventManager.cs
index a9991e12..847dc75f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorDisplayConditionsChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellEditorDisplayConditionsChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellState.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellState.cs
index 476c0c5f..7fecc00c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellState.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellState.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidatingEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidatingEvent.cs
index 5bc51681..4f3d7f8d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidatingEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidatingEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationContext.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationContext.cs
index 644e461e..c4d2d043 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationContext.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationContext.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationError.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationError.cs
index 1df02ff0..5b266bf5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationError.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationError.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationErrorRoutedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationErrorRoutedEvent.cs
index 4f8a9022..50d57c8c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationErrorRoutedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CellValidationErrorRoutedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.cs
index 05ab14c2..0a9cacd2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.xaml
index 3527b295..a6edcf64 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.cs
index a866658e..c5ac6ed6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Column.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnBase.cs
index 5d7ec190..4636e7e7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnCollection.cs
index 2cb8070d..7ad7c48f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerCell.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerCell.cs
index 9bbf5077..028c8a22 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerCell.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerCell.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerRow.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerRow.cs
index 26d90af3..fe814e72 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerRow.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnManagerRow.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnReorderingEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnReorderingEvent.cs
index a8d167cc..746687bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnReorderingEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnReorderingEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnVisibilePositionChangedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnVisibilePositionChangedEventArgs.cs
index e6237fca..e4c3b939 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnVisibilePositionChangedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnVisibilePositionChangedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnWidth.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnWidth.cs
index 34fdc2a8..c224ff07 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnWidth.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ColumnWidth.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ContainerSizeState.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ContainerSizeState.cs
index 8c9641b0..1a5841af 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ContainerSizeState.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ContainerSizeState.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ColumnWidthConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ColumnWidthConverter.cs
index 4e98b1ac..4baeb69e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ColumnWidthConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ColumnWidthConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/CurrencyConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/CurrencyConverter.cs
index d690d3a2..9687cf3e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/CurrencyConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/CurrencyConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/DefaultDataConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/DefaultDataConverter.cs
index 0a21e0e4..ffc01a19 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/DefaultDataConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/DefaultDataConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/EmptyStringToBooleanConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/EmptyStringToBooleanConverter.cs
index ba61d858..5eb7b598 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/EmptyStringToBooleanConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/EmptyStringToBooleanConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToForeignKeyConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToForeignKeyConverter.cs
index d1b1421c..6720fb84 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToForeignKeyConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToForeignKeyConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToNullableBoolConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToNullableBoolConverter.cs
index fa841c10..238abd20 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToNullableBoolConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/FilterCriterionToNullableBoolConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/GreaterThanZeroConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/GreaterThanZeroConverter.cs
index 79d15dae..3bfcf7fe 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/GreaterThanZeroConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/GreaterThanZeroConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ImageConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ImageConverter.cs
index 38919beb..3afd37dd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ImageConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ImageConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IndexToOddConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IndexToOddConverter.cs
index d0d78b2e..613939e4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IndexToOddConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IndexToOddConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IntAdditionConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IntAdditionConverter.cs
index d12ea46a..a808af24 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IntAdditionConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/IntAdditionConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/InverseBooleanConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/InverseBooleanConverter.cs
index 0327cc9b..907af8a3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/InverseBooleanConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/InverseBooleanConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/LevelToOpacityConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/LevelToOpacityConverter.cs
index 67677db2..e15c5d3c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/LevelToOpacityConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/LevelToOpacityConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/MultimodalResultConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/MultimodalResultConverter.cs
index 9423c718..f8b4c684 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/MultimodalResultConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/MultimodalResultConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NegativeDoubleConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NegativeDoubleConverter.cs
index e8d5f5ff..5d27d1d0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NegativeDoubleConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NegativeDoubleConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NullToBooleanConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NullToBooleanConverter.cs
index 20a07af0..99798653 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NullToBooleanConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/NullToBooleanConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SortingDirectionToBooleanConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SortingDirectionToBooleanConverter.cs
index 72371488..8d448b54 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SortingDirectionToBooleanConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SortingDirectionToBooleanConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SourceDataConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SourceDataConverter.cs
index 13f68022..57fee348 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SourceDataConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SourceDataConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StatResultConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StatResultConverter.cs
index 8aa0fa14..32a52c0d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StatResultConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StatResultConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StringFormatConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StringFormatConverter.cs
index 288afb35..f3de4784 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StringFormatConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/StringFormatConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SynchronizedScrollViewerMultiConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SynchronizedScrollViewerMultiConverter.cs
index a402f5c9..cdb9099b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SynchronizedScrollViewerMultiConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/SynchronizedScrollViewerMultiConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ThicknessConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ThicknessConverter.cs
index a169d70a..4b7f16be 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ThicknessConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ThicknessConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TreeViewLineConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TreeViewLineConverter.cs
index 44efde44..6e9299f9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TreeViewLineConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TreeViewLineConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToBooleanConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToBooleanConverter.cs
index 4663f464..c48b96bc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToBooleanConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToBooleanConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToVisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToVisibilityConverter.cs
index 1831c0a8..8a7aa991 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToVisibilityConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/TypeToVisibilityConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ValueToMaskedTextConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ValueToMaskedTextConverter.cs
index 3178c02e..3e7ecac3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ValueToMaskedTextConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Converters/ValueToMaskedTextConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CurrencyManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CurrencyManager.cs
index 79e1e66d..f1c1e112 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CurrencyManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/CurrencyManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataCell.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataCell.cs
index 53142a61..9b9055bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataCell.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataCell.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridBindingInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridBindingInfo.cs
index 5b496852..42c31e43 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridBindingInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridBindingInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCheckBox.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCheckBox.cs
index 23a20c72..d0507ffd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCheckBox.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCheckBox.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCommands.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCommands.cs
index d98e205a..9cb2be57 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCommands.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCommands.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridContext.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridContext.cs
index 31496c6e..f432f742 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridContext.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridContext.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControl.cs
index a634fa2e..629adc19 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -907,7 +904,6 @@ namespace Xceed.Wpf.DataGrid
private static object SelectionUnitCoerceValueCallback( DependencyObject sender, object value )
{
-
return value;
}
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlSelectionChangedWeakEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlSelectionChangedWeakEventManager.cs
index 292b3411..645e3afb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlSelectionChangedWeakEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlSelectionChangedWeakEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlTemplateChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlTemplateChangedEventManager.cs
index 0ca65b98..f6f03ad8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlTemplateChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridControlTemplateChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangedEvent.cs
index dd64ddf0..c0aec71b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangingEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangingEvent.cs
index 4f314da5..8e281406 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangingEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridCurrentChangingEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridDatePicker.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridDatePicker.cs
index 7bbbd0f8..861e4af8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridDatePicker.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridDatePicker.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -61,10 +58,14 @@ namespace Xceed.Wpf.DataGrid
if( InputValidationError != null )
{
InputValidationErrorEventArgs args = ( _commitException != null )
- ? new InputValidationErrorEventArgs( _commitException.Message )
- : new InputValidationErrorEventArgs( e.Text );
+ ? new InputValidationErrorEventArgs( _commitException )
+ : new InputValidationErrorEventArgs( e.Exception );
InputValidationError( this, args );
+ if( args.ThrowException )
+ {
+ throw args.Exception;
+ }
}
}
@@ -72,8 +73,9 @@ namespace Xceed.Wpf.DataGrid
#region Method
- public void CommitInput()
+ public bool CommitInput()
{
+ bool returnValue = true;
try
{
// Null or empty string is a null date;
@@ -95,7 +97,10 @@ namespace Xceed.Wpf.DataGrid
// This will raise the "DateValidationError" event from the datepicker
Text = "Invalid";
_commitException = null;
+ returnValue = false;
}
+
+ return returnValue;
}
#endregion
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridException.cs
index a4784d82..d376a112 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridFocusException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridFocusException.cs
index aa040cf4..58f39151 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridFocusException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridFocusException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridInternalException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridInternalException.cs
index 0bf84502..7af36fdf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridInternalException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridInternalException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridItemsHost.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridItemsHost.cs
index 11971c7f..bf5b8bd2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridItemsHost.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridItemsHost.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangedEvent.cs
index bdd285c9..0540a7b0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangingEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangingEvent.cs
index 5e5881ca..c11c99a6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangingEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridSelectionChangingEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridValidationException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridValidationException.cs
index 3bc1c00f..fdafd1e8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridValidationException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridValidationException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridVirtualizingPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridVirtualizingPanel.cs
index 8b33248e..44e383f7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridVirtualizingPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataGridVirtualizingPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRow.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRow.cs
index 1b833b19..a102a0fa 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRow.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRow.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRowEditableWrapper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRowEditableWrapper.cs
index ea937d7e..8a8ea3fb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRowEditableWrapper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DataRowEditableWrapper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml
index 369edfc9..a586bc46 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -21,7 +18,7 @@
x:ClassModifier="internal"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=WPFToolkit.Extended"
+ xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
xmlns:local="clr-namespace:Xceed.Wpf.DataGrid"
xmlns:conv="clr-namespace:Xceed.Wpf.DataGrid.Converters"
xmlns:markup="clr-namespace:Xceed.Wpf.DataGrid.Markup"
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml.cs
index 16d594ae..6b5228c9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultCellEditorSelector.xaml.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultDetailConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultDetailConfiguration.cs
index 143fe6c2..7037adc1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultDetailConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DefaultDetailConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DeletingSelectedItemErrorRoutedEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DeletingSelectedItemErrorRoutedEventArgs.cs
index 73da296f..945cd71c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DeletingSelectedItemErrorRoutedEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DeletingSelectedItemErrorRoutedEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfiguration.cs
index 7f686394..559fbb45 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfigurationCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfigurationCollection.cs
index e7d34319..dc792a0d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfigurationCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailConfigurationCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailIndicator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailIndicator.cs
index 84fc6341..1540b2c4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailIndicator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailIndicator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailVisibilityChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailVisibilityChangedEventManager.cs
index 5bc4b623..a1215489 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailVisibilityChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailVisibilityChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailsChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailsChangedEventManager.cs
index ddd78727..0a5007a9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailsChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DetailsChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DropMarkAdorner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DropMarkAdorner.cs
index 7518ffae..be1d3772 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DropMarkAdorner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/DropMarkAdorner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/ClipboardExporterBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/ClipboardExporterBase.cs
index bcb510bc..5cd3800b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/ClipboardExporterBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/ClipboardExporterBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/CsvClipboardExporter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/CsvClipboardExporter.cs
index 6f16d69e..0a91aa84 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/CsvClipboardExporter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/CsvClipboardExporter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/XceedDataObject.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/XceedDataObject.cs
index 6440e63e..b3176646 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/XceedDataObject.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/(Clipboard)/XceedDataObject.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/CsvFormatSettings.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/CsvFormatSettings.cs
index a1991629..f5a7f9b3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/CsvFormatSettings.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/CsvFormatSettings.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatHelper.cs
index 749aff83..56f86b1c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatSettingsBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatSettingsBase.cs
index 066f6003..c24b8a11 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatSettingsBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Export/FormatSettingsBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelector.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelector.cs
index 2491b462..43a9c3c5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelector.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelector.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItem.cs
index 69d6514b..825d12f1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItemCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItemCollection.cs
index e86cab87..e0d76e76 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItemCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FieldNameGroupConfigurationSelectorItemCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/AndFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/AndFilterCriterion.cs
index dbc35f18..b7a4e8a3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/AndFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/AndFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/ContainsFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/ContainsFilterCriterion.cs
index 421d7ab1..f06f78c7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/ContainsFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/ContainsFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/CriterionDescriptorAttribute.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/CriterionDescriptorAttribute.cs
index 8362faa5..f13cc65a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/CriterionDescriptorAttribute.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/CriterionDescriptorAttribute.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/DifferentThanFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/DifferentThanFilterCriterion.cs
index 97a33e89..5614933c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/DifferentThanFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/DifferentThanFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EndsWithFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EndsWithFilterCriterion.cs
index c8412c49..441a0c98 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EndsWithFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EndsWithFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EqualToFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EqualToFilterCriterion.cs
index 4755c3b6..a03d23e2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EqualToFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/EqualToFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/FilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/FilterCriterion.cs
index f407e4e0..a6548280 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/FilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/FilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanFilterCriterion.cs
index 08808234..481b1857 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanOrEqualToFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanOrEqualToFilterCriterion.cs
index 30744072..5714dfdb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanOrEqualToFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/GreaterThanOrEqualToFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanFilterCriterion.cs
index 44e7caf5..808eccdb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanOrEqualToFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanOrEqualToFilterCriterion.cs
index 6f6018b3..e2708ade 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanOrEqualToFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/LessThanOrEqualToFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/NotFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/NotFilterCriterion.cs
index e4fe1f47..bd4fc5c8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/NotFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/NotFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/OrFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/OrFilterCriterion.cs
index fbd8ac08..f319ca21 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/OrFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/OrFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/RelationalFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/RelationalFilterCriterion.cs
index ba4963a6..2c1f5022 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/RelationalFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/RelationalFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/StartsWithFilterCriterion.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/StartsWithFilterCriterion.cs
index eda077b8..50ada465 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/StartsWithFilterCriterion.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterCriteria/StartsWithFilterCriterion.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser.cs
index 1aa2d191..b386158f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParserTestWindow.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParserTestWindow.cs
index c8050a8e..2aa00023 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParserTestWindow.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParserTestWindow.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser_UnitTests.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser_UnitTests.cs
index cff19c06..8d843c45 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser_UnitTests.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FilterParser_UnitTests.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ForeignKeyConfigurationChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ForeignKeyConfigurationChangedEventManager.cs
index 6ef64116..cd4714ee 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ForeignKeyConfigurationChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ForeignKeyConfigurationChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FrameworkElementUnloadedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FrameworkElementUnloadedEventManager.cs
index f201284e..3b24c3cf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FrameworkElementUnloadedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/FrameworkElementUnloadedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GlobalSuppressions.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GlobalSuppressions.cs
index a689ee39..c6bfb349 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GlobalSuppressions.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GlobalSuppressions.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Group.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Group.cs
index c2224938..0047c9ea 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Group.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Group.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByControl.cs
index feddab45..ff6ecd45 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByItem.cs
index eb405cf3..15edd0e5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupByItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfiguration.cs
index cfd06aa2..83f135a5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelector.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelector.cs
index e0254185..b7799f68 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelector.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelector.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelectorChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelectorChangedEventManager.cs
index 1cd9298d..3fa32e77 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelectorChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupConfigurationSelectorChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupExtensions.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupExtensions.cs
index eb9d5fdb..34a14297 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupExtensions.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupExtensions.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderControl.cs
index 147ad364..db55a26e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderFooterCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderFooterCollection.cs
index 3a6b2c89..08411a13 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderFooterCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupHeaderFooterCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfiguration.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfiguration.cs
index 7df0c3ab..1e7d477c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfiguration.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfiguration.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfigurationCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfigurationCollection.cs
index a1c0e24f..6a215de5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfigurationCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelConfigurationCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescription.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescription.cs
index 57d43882..7bc9d20a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescription.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescription.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescriptionCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescriptionCollection.cs
index 7a9b0bb8..c7855359 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescriptionCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelDescriptionCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicator.cs
index aa4e3062..7e46e0e3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicatorPane.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicatorPane.cs
index 4d71d49f..88a0a5da 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicatorPane.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupLevelIndicatorPane.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationButton.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationButton.cs
index 90f30cb8..dac570dd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationButton.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationButton.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControl.cs
index ba4716bd..175e6ade 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControlItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControlItem.cs
index c7e844cc..807e3f54 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControlItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupNavigationControlItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupingHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupingHelper.cs
index 5eef9ceb..ddc1324a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupingHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/GroupingHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HashedLinkedList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HashedLinkedList.cs
index 63291035..7d68b221 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HashedLinkedList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HashedLinkedList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HeaderFooterItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HeaderFooterItem.cs
index a6ca0998..ebd3e5b7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HeaderFooterItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HeaderFooterItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControl.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControl.cs
index 2f41d7f4..69abd190 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControl.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -279,6 +276,14 @@ namespace Xceed.Wpf.DataGrid
}
}
+ protected override Size MeasureOverride( Size constraint )
+ {
+ Size groupByControlSize = base.MeasureOverride( constraint );
+ m_watermarkAdorner.Measure( constraint );
+ return new Size( groupByControlSize.Width + m_watermarkAdorner.DesiredSize.Width
+ , Math.Max( groupByControlSize.Height, m_watermarkAdorner.DesiredSize.Height ) );
+ }
+
#endregion PROTECTED METHODS
#region PROTECTED INTERNAL METHODS
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControlNode.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControlNode.cs
index 648dc6b9..b21921d0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControlNode.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByControlNode.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByItem.cs
index 0e77f1c1..259cbb28 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupByItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupLevelIndicatorPane.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupLevelIndicatorPane.cs
index 675c4e7e..a510e6f0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupLevelIndicatorPane.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/HierarchicalGroupLevelIndicatorPane.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ICustomVirtualizingPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ICustomVirtualizingPanel.cs
index bb328fe2..4264bef5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ICustomVirtualizingPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ICustomVirtualizingPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitable.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitable.cs
index aeaae6f6..21a91cf3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitable.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitable.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitor.cs
index 1083a3fe..a87d47ce 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridContextVisitor.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridItemContainer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridItemContainer.cs
index e2eae20b..a710f0bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridItemContainer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDataGridItemContainer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDeferableScrollInfoRefresh.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDeferableScrollInfoRefresh.cs
index f5884e51..d8bdf66a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDeferableScrollInfoRefresh.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/IDeferableScrollInfoRefresh.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/InnerCellContentPresenter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/InnerCellContentPresenter.cs
index 03762567..99db2a7e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/InnerCellContentPresenter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/InnerCellContentPresenter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemPropertiesChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemPropertiesChangedEventManager.cs
index e6d65391..be263951 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemPropertiesChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemPropertiesChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsHostUIElementCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsHostUIElementCollection.cs
index 8bee67f2..bdf415b4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsHostUIElementCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsHostUIElementCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceChangedEventManager.cs
index 32920a29..d6b4ee16 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceHelper.cs
index 2300d036..5d1bc644 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ItemsSourceHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/KeyActivationGesture.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/KeyActivationGesture.cs
index 6e7e526d..ac997106 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/KeyActivationGesture.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/KeyActivationGesture.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelector.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelector.cs
index 2aa26b70..6818366b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelector.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelector.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItem.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItem.cs
index f1c595b8..6da78ed1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItem.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItem.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItemCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItemCollection.cs
index 1534a547..b5394744 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItemCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/LevelGroupConfigurationSelectorItemCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Log.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Log.cs
index 694ecfe7..bcca80b3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Log.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Log.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellContentBindingExtension.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellContentBindingExtension.cs
index eab09d28..b63fa6f9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellContentBindingExtension.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellContentBindingExtension.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellEditorBindingExtension.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellEditorBindingExtension.cs
index 634fad49..64bd3cc4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellEditorBindingExtension.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/CellEditorBindingExtension.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearGroupLevelConfigurations.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearGroupLevelConfigurations.cs
index c3c3cf4b..dc9003ae 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearGroupLevelConfigurations.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearGroupLevelConfigurations.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearHeadersFooters.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearHeadersFooters.cs
index 1633d449..d304bfa2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearHeadersFooters.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ClearHeadersFooters.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeConverter.cs
index 67a0a959..c9c7856e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeKey.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeKey.cs
index 1c301ed7..0e9faf93 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeKey.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ThemeKey.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewBindingExtension.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewBindingExtension.cs
index 5f2b3d3a..15981e4a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewBindingExtension.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewBindingExtension.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewConverter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewConverter.cs
index fa202fe5..f00346bb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewConverter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Markup/ViewConverter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxGroupLevelsChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxGroupLevelsChangedEventManager.cs
index cd79b235..56b9da50 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxGroupLevelsChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxGroupLevelsChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxSortLevelsChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxSortLevelsChangedEventManager.cs
index 9b671922..b7805838 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxSortLevelsChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/MaxSortLevelsChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ObjectComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ObjectComparer.cs
index fdae61d7..8b412554 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ObjectComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ObjectComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Print/IPrintInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Print/IPrintInfo.cs
index ca5cff43..043f086f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Print/IPrintInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Print/IPrintInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Properties/AssemblyInfo.cs
index 26ea94d6..a917398d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Properties/AssemblyInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Properties/AssemblyInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ReadOnlyColumnCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ReadOnlyColumnCollection.cs
index e5bd6869..06955ac1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ReadOnlyColumnCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ReadOnlyColumnCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RecyclingManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RecyclingManager.cs
index d1acc100..853118dc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RecyclingManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RecyclingManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Row.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Row.cs
index ef1e0a9f..2f1e408d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Row.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Row.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelector.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelector.cs
index 71004689..9c1ab8ad 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelector.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelector.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelectorPane.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelectorPane.cs
index 040a226f..4d819de0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelectorPane.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowSelectorPane.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowState.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowState.cs
index 206e7175..f05ef6ba 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowState.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowState.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationError.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationError.cs
index 5418aa7a..abe6dfcf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationError.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationError.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationErrorRoutedEvent.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationErrorRoutedEvent.cs
index 5a6c4e60..f9bf5f8d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationErrorRoutedEvent.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/RowValidationErrorRoutedEvent.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollChangedWeakEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollChangedWeakEventManager.cs
index 23d59fd9..f140f58c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollChangedWeakEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollChangedWeakEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollTip.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollTip.cs
index a08905b0..2662c977 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollTip.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollTip.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollViewerHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollViewerHelper.cs
index aaa13b29..8b9ec1bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollViewerHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ScrollViewerHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedCellsStorage.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedCellsStorage.cs
index 67489848..019773a9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedCellsStorage.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedCellsStorage.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedItemsStorage.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedItemsStorage.cs
index 3978e448..2d0ac07c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedItemsStorage.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectedItemsStorage.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRange.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRange.cs
index 48593f76..5cd2023b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRange.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRange.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeCollection.cs
index a548eec9..ab68f82c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeWithItems.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeWithItems.cs
index a99f036e..f0878548 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeWithItems.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionCellRangeWithItems.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChangedEventManager.cs
index a7d64785..92f55c54 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChanger.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChanger.cs
index e252c930..a88b3b38 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChanger.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionChanger.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionInfo.cs
index fcbfa87d..c089d28b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemCollection.cs
index 679fdc27..71cd5dd0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemRangeCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemRangeCollection.cs
index 5a8c76d5..685e04b6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemRangeCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionItemRangeCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionManager.cs
index 76896ede..cce51198 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRange.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRange.cs
index 125ae068..a23c3e69 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRange.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRange.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRangeWithItems.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRangeWithItems.cs
index bf2a94b2..3025a499 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRangeWithItems.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SelectionRangeWithItems.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/UserSettingsEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/UserSettingsEnum.cs
index 1ac99a01..63e5b5c4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/UserSettingsEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/UserSettingsEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/XmlColumnWidthStruct.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/XmlColumnWidthStruct.cs
index b43fea21..65a75b8a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/XmlColumnWidthStruct.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Settings/XmlColumnWidthStruct.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SortingHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SortingHelper.cs
index 2c9cc2b8..5901c82b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SortingHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/SortingHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/StaircasePanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/StaircasePanel.cs
index 0d794518..262bd406 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/StaircasePanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/StaircasePanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidSourcePropertyNameException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidSourcePropertyNameException.cs
index f50d24a6..65c865c7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidSourcePropertyNameException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidSourcePropertyNameException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidValueException.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidValueException.cs
index fc492092..6f1cd818 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidValueException.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/InvalidValueException.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunction.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunction.cs
index 2d352e3a..d81fb12b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunction.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunction.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionCollection.cs
index ef579011..03580e0e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionComparer.cs
index 25e83186..af796635 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatFunctionComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatResult.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatResult.cs
index 94371673..54b27a28 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatResult.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Stats/StatResult.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/TextInputActivationGesture.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/TextInputActivationGesture.cs
index d6f1d104..62ac11ce 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/TextInputActivationGesture.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/TextInputActivationGesture.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ThemeChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ThemeChangedEventManager.cs
index bd6e414f..4021e192 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ThemeChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ThemeChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/UnboundColumn.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/UnboundColumn.cs
index 70a963f9..e41ab069 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/UnboundColumn.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/UnboundColumn.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/EnumerableWrapper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/EnumerableWrapper.cs
index e97e86ef..34fbf8b5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/EnumerableWrapper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/EnumerableWrapper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/IndexWeakHeapSort.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/IndexWeakHeapSort.cs
index d1b76aa9..5574296f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/IndexWeakHeapSort.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/IndexWeakHeapSort.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ListChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ListChangedEventManager.cs
index f2ddbcaf..79f19e75 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ListChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ListChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableHashList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableHashList.cs
index a08787db..807c1b64 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableHashList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableHashList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableList.cs
index 67ceae10..b81d28d9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ObservableList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyDictionary.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyDictionary.cs
index 7b4d86de..e757aa43 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyDictionary.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyDictionary.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyObservableHashList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyObservableHashList.cs
index 9a2dc798..b2ab5cb5 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyObservableHashList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Collections/ReadOnlyObservableHashList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/BoolDataStore.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/BoolDataStore.cs
index f531b0fe..130daea8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/BoolDataStore.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/BoolDataStore.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/DataStore.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/DataStore.cs
index bff19c63..f3334ea7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/DataStore.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/DataStore.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ObjectDataStore.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ObjectDataStore.cs
index 71ecb48e..64bc7c32 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ObjectDataStore.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ObjectDataStore.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/StringDataStore.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/StringDataStore.cs
index ad9cfd32..42c899e0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/StringDataStore.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/StringDataStore.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ValueTypeDataStore.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ValueTypeDataStore.cs
index 62173a1d..8e633ce8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ValueTypeDataStore.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Data/ValueTypeDataStore.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Math/DoubleUtil.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Math/DoubleUtil.cs
index 0f8ff4dd..12221250 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Math/DoubleUtil.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Math/DoubleUtil.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/WeakEventHandler.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/WeakEventHandler.cs
index ecda8200..20c5a439 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/WeakEventHandler.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/WeakEventHandler.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DispatcherHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DispatcherHelper.cs
index fed67ff0..0f59f354 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DispatcherHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DispatcherHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragDropHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragDropHelper.cs
index 8f14a575..2c592cca 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragDropHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragDropHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragSourceManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragSourceManager.cs
index 914ae00e..21bc2147 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragSourceManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DragSourceManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -31,6 +28,7 @@ using System.Windows.Shapes;
using System.Windows.Threading;
using Xceed.Wpf.DataGrid;
using System.Windows.Navigation;
+using System.Windows.Controls.Primitives;
namespace Xceed.Utils.Wpf.DragDrop
{
@@ -298,6 +296,16 @@ namespace Xceed.Utils.Wpf.DragDrop
#endregion
+ #region ParentIsPopup Property
+
+ internal bool ParentWindowIsPopup
+ {
+ get;
+ private set;
+ }
+
+ #endregion
+
public event QueryCursorEventHandler DragOutsideQueryCursor;
public event EventHandler DroppedOutside;
@@ -336,14 +344,21 @@ namespace Xceed.Utils.Wpf.DragDrop
this.InitialMousePositionToDraggedElement = e.GetPosition( this.DraggedElement );
- //Get the current window on which the drag is happening
- Window currentWindow = this.GetDraggedElementWindow();
+ //Get the current window (which can be a popup) on which the drag is happening
+ Visual parent = this.GetDraggedElementWindow();
+
+ //Set the flag because the dragged ghost in the case of a popup is different, and return because DraggedElementGhost will not be used.
+ if( parent is Popup )
+ {
+ this.ParentWindowIsPopup = true;
+ return;
+ }
//Get the starting position of the gost window, so it can be used to correct the mouse position while dragging it.
Point ghostPostion = new Point( -this.InitialMousePositionToDraggedElement.Value.X, -this.InitialMousePositionToDraggedElement.Value.Y );
- if( currentWindow != null )
+ if( parent != null )
{
- m_ghostInitialScreenPositon = currentWindow.PointToScreen( ghostPostion );
+ m_ghostInitialScreenPositon = parent.PointToScreen( ghostPostion );
}
else
{
@@ -413,6 +428,10 @@ namespace Xceed.Utils.Wpf.DragDrop
protected virtual void UpdateDraggedElementGhostOnDrag( MouseEventArgs e )
{
+ //DraggedElementGhost is not used in the case of a popup window.
+ if( this.ParentWindowIsPopup )
+ return;
+
Window ghost = this.DraggedElementGhost;
if( ghost == null )
@@ -437,16 +456,9 @@ namespace Xceed.Utils.Wpf.DragDrop
protected virtual IDropTarget GetDropTargetOnDrag( MouseEventArgs e, out Nullable dropTargetPosition, out IDropTarget lastFoundDropTarget )
{
- IDropTarget dropTarget =
- DragDropHelper.GetDropTargetAtPoint( this.DraggedElement,
- this.DragContainer,
- e,
- out dropTargetPosition,
- out lastFoundDropTarget );
+ IDropTarget dropTarget = DragDropHelper.GetDropTargetAtPoint( this.DraggedElement, this.DragContainer, e, out dropTargetPosition, out lastFoundDropTarget );
- // ColumnManagerRow was defined as IDropTarget only
- // because Animated Column Reordering required it, ignore it in
- // base class
+ // ColumnManagerRow was defined as IDropTarget only because Animated Column Reordering required it, ignore it in base class
if( dropTarget is ColumnManagerRow )
{
dropTarget = null;
@@ -478,10 +490,8 @@ namespace Xceed.Utils.Wpf.DragDrop
if( this.CurrentDropTarget != null )
{
- // Always use the Mouse Position relative to DraggedElement
- // and not the DraggedContainer
- this.CurrentDropTarget.DragOver( this.DraggedElement,
- Mouse.GetPosition( this.CurrentDropTarget as IInputElement ) );
+ // Always use the Mouse Position relative to DraggedElement and not the DraggedContainer
+ this.CurrentDropTarget.DragOver( this.DraggedElement, Mouse.GetPosition( this.CurrentDropTarget as IInputElement ) );
}
}
@@ -615,6 +625,8 @@ namespace Xceed.Utils.Wpf.DragDrop
rectangle.Fill = brush;
Window draggedWindow = new Window();
+ //Make sure it stay on top of all other windows.
+ draggedWindow.Topmost = true;
//This will hide borders
draggedWindow.WindowStyle = WindowStyle.None;
//This will hide everything except what is explicitly set as content, that is, the rectangle defined up here.
@@ -679,17 +691,23 @@ namespace Xceed.Utils.Wpf.DragDrop
}
}
- private Window GetDraggedElementWindow()
+ private Visual GetDraggedElementWindow()
{
DependencyObject current = this.DraggedElement;
while( current != null )
{
+ Popup popup = current as Popup;
+
+ //If the grid is in a popup, this becomes the owning window, so return it.
+ if( popup != null )
+ return popup;
+
Window window = current as Window;
if( window != null )
return window;
- current = VisualTreeHelper.GetParent( current );
+ current = TreeHelper.GetParent( current );
}
// The dragged element's window was not found.
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DraggedElementAdorner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DraggedElementAdorner.cs
index e57dca4c..b07efd79 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DraggedElementAdorner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/DraggedElementAdorner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/IDropTarget.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/IDropTarget.cs
index 01add24d..b73694b8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/IDropTarget.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DragDrop/IDropTarget.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/Markup/XceedResourceDictionary.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/Markup/XceedResourceDictionary.cs
index 98df96cc..fed61ea6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/Markup/XceedResourceDictionary.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/Markup/XceedResourceDictionary.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/TreeHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/TreeHelper.cs
index 347fcfa2..4a5f0bbc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/TreeHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/Wpf/TreeHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/XmlSerialization/XmlSerializableBaseType.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/XmlSerialization/XmlSerializableBaseType.cs
index 97e5fd3f..e5f28b13 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/XmlSerialization/XmlSerializableBaseType.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Utils/XmlSerialization/XmlSerializableBaseType.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidateInputWrapper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidateInputWrapper.cs
index 81e14b18..ffd573d7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidateInputWrapper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidateInputWrapper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellContentBindingValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellContentBindingValidationRule.cs
index 48645bac..405076a9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellContentBindingValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellContentBindingValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorErrorValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorErrorValidationRule.cs
index 9fdaf280..f52d6d56 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorErrorValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorErrorValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorValidationRule.cs
index d4ca55cc..6e396824 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellEditorValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellValidationRule.cs
index 55dbc298..ec7c004e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/CellValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/EventCellValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/EventCellValidationRule.cs
index 50ccd012..11df1381 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/EventCellValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/EventCellValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/FilterExpressionValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/FilterExpressionValidationRule.cs
index e3a1797b..7a5f7b88 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/FilterExpressionValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/FilterExpressionValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/PassthroughCellValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/PassthroughCellValidationRule.cs
index 581bc529..c77c02bf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/PassthroughCellValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/PassthroughCellValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/SourceDataConverterValidationRule.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/SourceDataConverterValidationRule.cs
index 086313e4..4ed07289 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/SourceDataConverterValidationRule.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ValidationRules/SourceDataConverterValidationRule.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ViewChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ViewChangedEventManager.cs
index 1c414977..ed45d02b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ViewChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/ViewChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/ColumnVirtualizationManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/ColumnVirtualizationManager.cs
index 50db3e68..be936f6b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/ColumnVirtualizationManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/ColumnVirtualizationManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/TableViewColumnVirtualizationManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/TableViewColumnVirtualizationManager.cs
index 476bd48d..9448ffe3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/TableViewColumnVirtualizationManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/TableViewColumnVirtualizationManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventArgs.cs
index 523905cc..de64d07a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventManager.cs
index 6e3b2d26..9de658c1 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/UpdateMeasureRequiredEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingFixedCellSubPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingFixedCellSubPanel.cs
index 023ea936..26e67aae 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingFixedCellSubPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingFixedCellSubPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingUICellCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingUICellCollection.cs
index 7f570cab..769f171a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingUICellCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(ColumnVirtualization)/VirtualizingUICellCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnStretchModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnStretchModeEnum.cs
index 84f17130..75485ea0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnStretchModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnStretchModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/DropMarkOrientationEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/DropMarkOrientationEnum.cs
index 60b744a0..652bea1a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/DropMarkOrientationEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/DropMarkOrientationEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/PassiveLayoutAxisEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/PassiveLayoutAxisEnum.cs
index 8b1c3e7b..9f391d8a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/PassiveLayoutAxisEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/PassiveLayoutAxisEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/SynchronizedScrollViewerPositionEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/SynchronizedScrollViewerPositionEnum.cs
index c6d9c350..dc65e6c0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/SynchronizedScrollViewerPositionEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/SynchronizedScrollViewerPositionEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ViewPropertyModeEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ViewPropertyModeEnum.cs
index bc006b80..1cf7a83f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ViewPropertyModeEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ViewPropertyModeEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/AnimatedDraggedElementAdorner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/AnimatedDraggedElementAdorner.cs
index d4fb395e..f4d76d44 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/AnimatedDraggedElementAdorner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/AnimatedDraggedElementAdorner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ColumnReorderingDragSourceManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ColumnReorderingDragSourceManager.cs
index 11b3dc7f..c2bfb120 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ColumnReorderingDragSourceManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ColumnReorderingDragSourceManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -273,6 +270,13 @@ namespace Xceed.Wpf.DataGrid.Views
base.ProcessMouseLeftButtonDown( e );
+ //When the grid is hosted in a popup window, it is not possible to know the position of the popup in certain scenarios (e.g. fullscreen, popup openning upward).
+ //Thus we must use a regular system adorner instead of the ghost window, so that the dragged adorner will appear correctly under the mouse pointer.
+ if( this.ParentWindowIsPopup )
+ {
+ this.SetPopupDragAdorner( e.Source as ColumnManagerCell );
+ }
+
if( !this.IsAnimatedColumnReorderingEnabled )
{
this.AutoScrollInterval = 50;
@@ -316,6 +320,13 @@ namespace Xceed.Wpf.DataGrid.Views
{
base.ProcessMouseLeftButtonUp( e );
+ //If in a popup, we are using a system adorner, and we need to hide it when releasing the mouse button.
+ if( this.ParentWindowIsPopup )
+ {
+ m_popupDraggedElementAdorner.AdornedElementImage.Opacity = 0;
+ m_popupDraggedElementAdorner.SetOffset( ColumnReorderingDragSourceManager.EmptyPoint );
+ }
+
if( !this.IsAnimatedColumnReorderingEnabled )
return;
@@ -450,10 +461,14 @@ namespace Xceed.Wpf.DataGrid.Views
dropTargetPosition = null;
}
- //Flag used to reduce the number of column anitmations, to speed up the scrolling on ColumnManagerCell dragging.
+ //Flag used to reduce the number of column animations, to speed up the scrolling on ColumnManagerCell dragging.
if( returnedDropTarget == null && this.CurrentDropTarget == null )
{
m_noColumnsReorderingNeeded = true;
+ if( this.ParentWindowIsPopup )
+ {
+ m_popupDraggedElementAdorner.AdornedElementImage.Opacity = 0;
+ }
}
else
{
@@ -488,11 +503,23 @@ namespace Xceed.Wpf.DataGrid.Views
protected override void UpdateDraggedElementGhostOnDrag( MouseEventArgs e )
{
- //If no animation, or if the dragged object is beyond the edge of the grid,
- //no need to do anything in this override, simply call base.
- //This will be suficient to update the DraggedElementGhost positon.
- //The result is a much faster scrolling of the grid via the CheckForAutoScroll() method.
- if( this.IsAnimatedColumnReorderingEnabled && !m_noColumnsReorderingNeeded )
+ //If in TableView and the grid is hosted in a Popup window.
+ if( !this.IsAnimatedColumnReorderingEnabled && this.ParentWindowIsPopup )
+ {
+ this.ShowDraggedElementGhost = false;
+
+ Point draggedElementToMouse = e.GetPosition( this.DraggedElement );
+ // Correct it according to initial mouse position over the dragged element
+ draggedElementToMouse.X -= this.InitialMousePositionToDraggedElement.GetValueOrDefault().X;
+ draggedElementToMouse.Y -= this.InitialMousePositionToDraggedElement.GetValueOrDefault().Y;
+
+ this.ApplyContainerClip( m_popupDraggedElementAdorner );
+ m_popupDraggedElementAdorner.AdornedElementImage.Opacity = 1;
+ m_popupDraggedElementAdorner.SetOffset( draggedElementToMouse );
+ }
+ //If no animation, or if the dragged object is beyond the edge of the grid, no need to do anything in this override, simply call base.
+ //This will be suficient to update the DraggedElementGhost positon. The result is a much faster scrolling of the grid via the CheckForAutoScroll() method.
+ else if( this.IsAnimatedColumnReorderingEnabled && !m_noColumnsReorderingNeeded )
{
// We are reverting every animation before detaching from the manager
// so do not update the ghost position
@@ -501,13 +528,10 @@ namespace Xceed.Wpf.DataGrid.Views
return;
}
- ColumnManagerCell draggedOverCell = this.CurrentDropTarget as ColumnManagerCell;
-
- bool dragOverCell = ( draggedOverCell != null );
- bool dragOverRow = ( this.CurrentDropTarget as ColumnManagerRow ) != null;
+ bool dragOverRowOrCell = ( this.CurrentDropTarget as ColumnManagerRow ) != null || ( this.CurrentDropTarget as ColumnManagerCell ) != null;
// We are dragging over an object that will handle the drop itself
- if( !( dragOverCell || dragOverRow ) )
+ if( !dragOverRowOrCell && !this.ParentWindowIsPopup )
{
// Ensure to pause every other animations before
this.PauseGhostToMousePositionAnimation();
@@ -518,8 +542,37 @@ namespace Xceed.Wpf.DataGrid.Views
this.MoveGhostToTargetColumn( e.GetPosition( this.DraggedElement ) );
}
+ //If dragging over an object that will handle the drop itself and the grid is hosted in a Popup window.
+ else if( !dragOverRowOrCell && this.ParentWindowIsPopup )
+ {
+ // Ensure to pause every other animations before
+ this.PauseGhostToMousePositionAnimation();
+ this.PauseDraggedElementFadeInAnimation();
+
+ this.RollbackReordering();
+ this.ShowDraggedElementGhost = false;
+
+ this.MoveGhostToTargetColumn( e.GetPosition( this.DraggedElement ) );
+
+ Point draggedElementToMouse = e.GetPosition( this.DraggedElement );
+ // Correct it according to initial mouse position over the dragged element
+ draggedElementToMouse.X -= this.InitialMousePositionToDraggedElement.GetValueOrDefault().X;
+ draggedElementToMouse.Y -= this.InitialMousePositionToDraggedElement.GetValueOrDefault().Y;
+
+ this.ApplyContainerClip( m_popupDraggedElementAdorner );
+ m_popupDraggedElementAdorner.AdornedElementImage.Opacity = 1;
+ m_popupDraggedElementAdorner.SetOffset( draggedElementToMouse );
+ }
+ //If animations are required.
else
{
+ //If in a popup, hide the dragged element adorner.
+ if( this.ParentWindowIsPopup )
+ {
+ m_popupDraggedElementAdorner.AdornedElementImage.Opacity = 0;
+ m_popupDraggedElementAdorner.SetOffset( ColumnReorderingDragSourceManager.EmptyPoint );
+ }
+
// Pause animations that are moving ghosts to target Column
this.PauseMoveGhostToTargetColumnAnimation();
this.PauseDraggedElementFadeInAnimation();
@@ -604,6 +657,42 @@ namespace Xceed.Wpf.DataGrid.Views
reorderingInfoManager.InitialFixedColumnCount );
}
+ private void SetPopupDragAdorner( ColumnManagerCell columnManagerCell )
+ {
+ if( columnManagerCell == null )
+ return;
+
+ if( m_popupDraggedElementAdorner != null )
+ {
+ this.AdornerLayerInsideDragContainer.Remove( m_popupDraggedElementAdorner );
+ m_popupDraggedElementAdorner = null;
+ }
+
+ // Get the Rect for the DataGridControl
+ DataGridControl dataGridControl = this.DraggedDataGridContext.DataGridControl;
+
+ Rect dataGridControlRect = new Rect( 0, 0, dataGridControl.ActualWidth, dataGridControl.ActualHeight );
+
+ Point elementToDataGridControl = columnManagerCell.TranslatePoint( ColumnReorderingDragSourceManager.EmptyPoint, dataGridControl );
+
+ // Get the Rect for the element that request a ghost
+ Rect elementRect = new Rect( elementToDataGridControl, columnManagerCell.RenderSize );
+
+ // This is a special case with the current Element that is always be layouted, but can be out of view
+ if( !elementRect.IntersectsWith( dataGridControlRect ) )
+ return;
+
+ AnimatedDraggedElementAdorner adorner = new AnimatedDraggedElementAdorner( columnManagerCell, this.AdornerLayerInsideDragContainer, true );
+
+ adorner.AdornedElementImage.Opacity = 0;
+
+ this.ApplyContainerClip( adorner );
+
+ this.AdornerLayerInsideDragContainer.Add( adorner );
+
+ m_popupDraggedElementAdorner = adorner;
+ }
+
private static IDropTarget GetDropTargetAtPoint( UIElement dragContainer, UIElement draggedElement, Point point )
{
IInputElement hitTest = dragContainer.InputHitTest( point );
@@ -1725,6 +1814,12 @@ namespace Xceed.Wpf.DataGrid.Views
}
m_elementToDraggedElementAdorner.Clear();
+
+ if( m_popupDraggedElementAdorner != null )
+ {
+ this.AdornerLayerInsideDragContainer.Remove( m_popupDraggedElementAdorner );
+ m_popupDraggedElementAdorner = null;
+ }
}
private void ShowDraggedColumnGhosts()
@@ -1846,6 +1941,7 @@ namespace Xceed.Wpf.DataGrid.Views
private Dictionary m_clockToFieldName = new Dictionary();
private Dictionary m_elementToDraggedElementAdorner = new Dictionary();
+ private DraggedElementAdorner m_popupDraggedElementAdorner;
private HorizontalMouseDragDirection m_horizontalMouseDragDirection = HorizontalMouseDragDirection.None;
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/IAnimatedScrollInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/IAnimatedScrollInfo.cs
index 8c145899..c29c60ea 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/IAnimatedScrollInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/IAnimatedScrollInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfo.cs
index 0016423c..d747ae40 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfoList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfoList.cs
index ec67c806..6ddbac48 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfoList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/LayoutedContainerInfoList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/OffsetAnimation.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/OffsetAnimation.cs
index 1342545e..f5fc15cd 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/OffsetAnimation.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/OffsetAnimation.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/PointAnimation.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/PointAnimation.cs
index 805f3976..11ace56b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/PointAnimation.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/PointAnimation.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfo.cs
index 04bce6d2..41e6038d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoComparer.cs
index 915fe621..d172d53a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoList.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoList.cs
index db30f512..13cc9622 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoList.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoList.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoReverseComparer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoReverseComparer.cs
index ce9d6f08..882a73a2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoReverseComparer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/StickyContainerInfoReverseComparer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowView.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowView.cs
index 5d88ef74..e68475d9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowView.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewAnimationHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewAnimationHelper.cs
index 302641e2..f843274f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewAnimationHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewAnimationHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewItemsHost.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewItemsHost.cs
index 153d0755..63dafe97 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewItemsHost.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewItemsHost.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewUIElementCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewUIElementCollection.cs
index 69263235..13dd09e9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewUIElementCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/TableflowViewUIElementCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ZOrderHelper.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ZOrderHelper.cs
index 1afb7d48..356d2cb9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ZOrderHelper.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/(TableflowView)/ZOrderHelper.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ColumnStretchingManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ColumnStretchingManager.cs
index 3bb9a2da..8d495716 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ColumnStretchingManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ColumnStretchingManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushes.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushes.cs
index 8570543f..7cdb4f91 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushes.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushes.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml
index 2fbbc27b..c59426c6 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml.cs
index d226d5ee..79afa685 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridScrollViewer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridScrollViewer.cs
index 92493711..67d5f531 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridScrollViewer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/DataGridScrollViewer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellPanel.cs
index 26908d23..a1de2599 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellSubPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellSubPanel.cs
index ad0516a7..dec6717a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellSubPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedCellSubPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedColumnSplitter.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedColumnSplitter.cs
index d76463a8..0996ce2a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedColumnSplitter.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/FixedColumnSplitter.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/IVirtualizingCellsHost.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/IVirtualizingCellsHost.cs
index 2d7db2f3..91a3bd6c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/IVirtualizingCellsHost.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/IVirtualizingCellsHost.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/PassiveLayoutDecorator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/PassiveLayoutDecorator.cs
index 3719ef20..91b66a9d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/PassiveLayoutDecorator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/PassiveLayoutDecorator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ScrollingCellsDecorator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ScrollingCellsDecorator.cs
index a60f14ca..9ea8c618 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ScrollingCellsDecorator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ScrollingCellsDecorator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/SynchronizedScrollViewer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/SynchronizedScrollViewer.cs
index 45598ab2..bfaddf8a 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/SynchronizedScrollViewer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/SynchronizedScrollViewer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableView.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableView.cs
index 9063f147..f3fe3fed 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableView.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableView.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewHeaderFooterPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewHeaderFooterPanel.cs
index 334b5e92..7d8b14df 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewHeaderFooterPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewHeaderFooterPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewItemsHost.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewItemsHost.cs
index 261525a2..3255f4b3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewItemsHost.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewItemsHost.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewScrollViewer.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewScrollViewer.cs
index ad163acb..ccedb951 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewScrollViewer.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TableViewScrollViewer.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TargetViewAttribute.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TargetViewAttribute.cs
index 91a5bf7d..ac39373c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TargetViewAttribute.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/TargetViewAttribute.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/Theme.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/Theme.cs
index 8202c029..18ef9647 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/Theme.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/Theme.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UICellCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UICellCollection.cs
index c21b3f58..8a6b0d55 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UICellCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UICellCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UIViewBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UIViewBase.cs
index 7750804b..08a05e55 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UIViewBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/UIViewBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewBase.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewBase.cs
index 88448394..ec2e437e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewBase.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewBase.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewPropertyAttribute.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewPropertyAttribute.cs
index 5123b9a7..f7962182 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewPropertyAttribute.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Views/ViewPropertyAttribute.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollection.cs
index 9e327c9a..98d5ca22 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollectionChangedEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollectionChangedEventManager.cs
index 42e3809c..2ad570bb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollectionChangedEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingCellCollectionChangedEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingStackPanel.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingStackPanel.cs
index 978833c5..78f3f34c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingStackPanel.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VirtualizingStackPanel.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VisibleColumnsUpdatingEventManager.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VisibleColumnsUpdatingEventManager.cs
index e59e732c..fc7ad446 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VisibleColumnsUpdatingEventManager.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/VisibleColumnsUpdatingEventManager.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/WatermarkAdorner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/WatermarkAdorner.cs
index 63722f1d..08defd93 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/WatermarkAdorner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/WatermarkAdorner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Xceed.Wpf.DataGrid.csproj b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Xceed.Wpf.DataGrid.csproj
index 1036f026..8f039c90 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Xceed.Wpf.DataGrid.csproj
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/Xceed.Wpf.DataGrid.csproj
@@ -64,6 +64,12 @@
AllRules.ruleset
+
+ True
+
+
+
+
3.5
@@ -946,11 +952,12 @@
-
+
{72E591D6-8F83-4D8C-8F67-9C325E623234}
- WPFToolkit.Extended
+ Xceed.Wpf.Toolkit
+
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.Resources.xaml
index 5e73fd11..e2a7ef25 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.normalcolor.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.normalcolor.Resources.xaml
index 8ec740e5..ace74f0c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.normalcolor.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/Aero.normalcolor.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/TableView.Aero.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/TableView.Aero.Graphics.xaml
index 925d8fd5..e6995410 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/TableView.Aero.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/Resources/TableView.Aero.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableView.Aero.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableView.Aero.normalcolor.xaml
index e0ed1ee6..72546046 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableView.Aero.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableView.Aero.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableflowView.Aero.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableflowView.Aero.normalcolor.xaml
index 85d321b7..da72e940 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableflowView.Aero.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Aero/TableflowView.Aero.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.Resources.xaml
index cc702f3b..91f3704e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Graphics.xaml
index 920f5f19..fbe8775f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Resources.xaml
index b0c5c92b..fe248276 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/Resources/Classic.systemcolor.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableView.Classic.systemcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableView.Classic.systemcolor.xaml
index bfe4426d..8111914f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableView.Classic.systemcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableView.Classic.systemcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableflowView.Classic.systemcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableflowView.Classic.systemcolor.xaml
index 7e0c31fb..6bfc9fc0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableflowView.Classic.systemcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Classic/TableflowView.Classic.systemcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Common.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Common.Resources.xaml
index f598bfb9..5e91b72c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Common.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Common.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Graphics.xaml
index 938b2290..8c15d44e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableView.GridElementTemplates.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableView.GridElementTemplates.xaml
index 060bc1f2..f9464179 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableView.GridElementTemplates.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableView.GridElementTemplates.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableflowView.GridElementTemplates.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableflowView.GridElementTemplates.xaml
index 1f6dde88..e3152abc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableflowView.GridElementTemplates.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Common/TableflowView.GridElementTemplates.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/FixedColumnSplitter.generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/FixedColumnSplitter.generic.xaml
index 786a862f..6474146e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/FixedColumnSplitter.generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/FixedColumnSplitter.generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/TableViewScrollViewer.generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/TableViewScrollViewer.generic.xaml
index 3c8ee0ca..ea279caa 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/TableViewScrollViewer.generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Controls/TableViewScrollViewer.generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.Resources.xaml
index 1600383b..bf4d2b48 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.homestead.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.homestead.Resources.xaml
index 790f7fb8..c4d6f559 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.homestead.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.homestead.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.metallic.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.metallic.Resources.xaml
index 0d19926c..53e4c0ad 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.metallic.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.metallic.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.normalcolor.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.normalcolor.Resources.xaml
index 3d221308..108993ca 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.normalcolor.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/Luna.normalcolor.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/TableView.Luna.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/TableView.Luna.Graphics.xaml
index 47a8d234..3cbdece8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/TableView.Luna.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/Resources/TableView.Luna.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.homestead.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.homestead.xaml
index 9d857de1..dfe3aa57 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.homestead.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.homestead.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.metallic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.metallic.xaml
index d1ad4a85..f7a548ac 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.metallic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.metallic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.normalcolor.xaml
index 40ce4e6e..7fcdeeaf 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableView.Luna.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.homestead.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.homestead.xaml
index f7b24d86..b0bc11c8 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.homestead.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.homestead.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.metallic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.metallic.xaml
index 6852e83b..8ca8e6fc 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.metallic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.metallic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.normalcolor.xaml
index c147f572..846a6664 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Luna/TableflowView.Luna.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.Resources.xaml
index cdf4cc65..fdcffb72 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.normalcolor.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.normalcolor.Resources.xaml
index 5681b878..f384ef01 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.normalcolor.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/Royale.normalcolor.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/TableView.Royale.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/TableView.Royale.Graphics.xaml
index ea76ea60..b5e979d9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/TableView.Royale.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/Resources/TableView.Royale.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableView.Royale.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableView.Royale.normalcolor.xaml
index ed89326a..a557477d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableView.Royale.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableView.Royale.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableflowView.Royale.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableflowView.Royale.normalcolor.xaml
index 70620c4d..138ba1c0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableflowView.Royale.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Royale/TableflowView.Royale.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/TableView.Windows7.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/TableView.Windows7.Graphics.xaml
index b5a657c2..00d03809 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/TableView.Windows7.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/TableView.Windows7.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Controls.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Controls.xaml
index 75fb5a51..b473039c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Controls.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Controls.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Resources.xaml
index ea7a325a..d363df6d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/Resources/Windows7.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableView.Windows7.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableView.Windows7.xaml
index d05fddd3..6977c867 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableView.Windows7.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableView.Windows7.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableflowView.Windows7.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableflowView.Windows7.xaml
index ab85820c..d28f7281 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableflowView.Windows7.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Windows7/TableflowView.Windows7.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/TableView.Zune.Graphics.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/TableView.Zune.Graphics.xaml
index bb9ff813..6038c4ad 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/TableView.Zune.Graphics.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/TableView.Zune.Graphics.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.Resources.xaml
index cdf4cc65..fdcffb72 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.normalcolor.Resources.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.normalcolor.Resources.xaml
index 3d221308..108993ca 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.normalcolor.Resources.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/Resources/Zune.normalcolor.Resources.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableView.Zune.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableView.Zune.normalcolor.xaml
index 82657644..4be426a0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableView.Zune.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableView.Zune.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableflowView.Zune.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableflowView.Zune.normalcolor.xaml
index 699f7d37..20dce619 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableflowView.Zune.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/Zune/TableflowView.Zune.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/aero.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/aero.normalcolor.xaml
index fd79c083..546fdd3f 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/aero.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/aero.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/classic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/classic.xaml
index d54e9de6..4bc2ce95 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/classic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/classic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/generic.xaml
index ba2e0b21..703a83a4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -40,21 +37,27 @@
+
+
+
+
+
+
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.homestead.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.homestead.xaml
index 0fefa058..50208d91 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.homestead.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.homestead.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.metallic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.metallic.xaml
index ff84e339..386de571 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.metallic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.metallic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.normalcolor.xaml
index 31e1d615..d5f5298b 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/luna.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/royale.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/royale.normalcolor.xaml
index 97ba8bc7..35b7d844 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/royale.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/royale.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/zune.normalcolor.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/zune.normalcolor.xaml
index 996d7bd4..c063edbb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/zune.normalcolor.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.DataGrid/themes/zune.normalcolor.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -38,7 +35,6 @@
-
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs
index 1730c869..52b871db 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -22,7 +19,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
- public const string BaseVersion = "1.8";
+ public const string BaseVersion = "1.9";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion +
".0.0";
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs
index d9308cb5..e67d3d81 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs
index 2340995d..5d98b342 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs
index 87aa6d0b..d22f66f7 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs
index b77d1772..e52ab223 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs
index 4a9e2678..485f1cf9 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs
index fa49289d..c34add1e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml
index cbd9490a..8f7cb9c0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs
index f05a0872..effa98f0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -39,7 +36,7 @@ namespace Xceed.Wpf.Toolkit
#region AllowSpin
- public static readonly DependencyProperty AllowSpinProperty = DependencyProperty.Register( "AllowSpin", typeof( bool ), typeof( ButtonSpinner ), new UIPropertyMetadata( true ) );
+ public static readonly DependencyProperty AllowSpinProperty = DependencyProperty.Register( "AllowSpin", typeof( bool ), typeof( ButtonSpinner ), new UIPropertyMetadata( true, AllowSpinPropertyChanged ) );
public bool AllowSpin
{
get
@@ -52,6 +49,12 @@ namespace Xceed.Wpf.Toolkit
}
}
+ private static void AllowSpinPropertyChanged( DependencyObject d, DependencyPropertyChangedEventArgs e )
+ {
+ ButtonSpinner source = d as ButtonSpinner;
+ source.OnAllowSpinChanged( (bool)e.OldValue, (bool)e.NewValue );
+ }
+
#endregion //AllowSpin
#region Content
@@ -258,6 +261,11 @@ namespace Xceed.Wpf.Toolkit
{
}
+ protected virtual void OnAllowSpinChanged( bool oldValue, bool newValue )
+ {
+ SetButtonUsage();
+ }
+
///
/// Disables or enables the buttons based on the valid spin direction.
///
@@ -266,12 +274,12 @@ namespace Xceed.Wpf.Toolkit
// buttonspinner adds buttons that spin, so disable accordingly.
if( IncreaseButton != null )
{
- IncreaseButton.IsEnabled = ( ( ValidSpinDirection & ValidSpinDirections.Increase ) == ValidSpinDirections.Increase );
+ IncreaseButton.IsEnabled = AllowSpin && ( ( ValidSpinDirection & ValidSpinDirections.Increase ) == ValidSpinDirections.Increase );
}
if( DecreaseButton != null )
{
- DecreaseButton.IsEnabled = ( ( ValidSpinDirection & ValidSpinDirections.Decrease ) == ValidSpinDirections.Decrease );
+ DecreaseButton.IsEnabled = AllowSpin && ( ( ValidSpinDirection & ValidSpinDirections.Decrease ) == ValidSpinDirections.Decrease );
}
}
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs
index 22bd9a6d..fcc90d1c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs
index bd432c2b..6b0000a0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs
index 3ca8296b..d4ae4295 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs
index 48108690..4cedc4c2 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml
index adaa75f3..cc44ed10 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -39,38 +36,37 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs
index c5aae90b..aa12b59d 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -39,7 +36,6 @@ namespace Xceed.Wpf.Toolkit
private bool _showNewNumber = true;
private decimal _previousValue;
private Operation _lastOperation = Operation.None;
- private CalculatorButtonType _lastButtonPressed;
private readonly Dictionary
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs
index 956ac25e..50783e25 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml
index a3037418..b47f97eb 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs
index b7eb67ec..3c8399a3 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs
index eb5e3261..5470079c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs
index f9f8f0d5..027fd2a0 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml
index 3208ade1..05bdbf1c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs
index a8ab8c26..778219be 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml
index 24d7d2b0..e9655483 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Images/Delete16.png b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png
similarity index 100%
rename from ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Images/Delete16.png
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.cs
similarity index 80%
rename from ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditor.cs
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.cs
index 8693a5ea..3b414ba4 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -29,11 +26,11 @@ using System.Windows.Input;
namespace Xceed.Wpf.Toolkit
{
- public class CollectionEditor : Control
+ public class CollectionControl : Control
{
#region Properties
- public static readonly DependencyProperty ItemsProperty = DependencyProperty.Register( "Items", typeof( ObservableCollection ), typeof( CollectionEditor ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty ItemsProperty = DependencyProperty.Register( "Items", typeof( ObservableCollection ), typeof( CollectionControl ), new UIPropertyMetadata( null ) );
public ObservableCollection Items
{
get
@@ -46,7 +43,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( CollectionEditor ), new UIPropertyMetadata( null, OnItemsSourceChanged ) );
+ public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( CollectionControl ), new UIPropertyMetadata( null, OnItemsSourceChanged ) );
public IList ItemsSource
{
get
@@ -61,9 +58,9 @@ namespace Xceed.Wpf.Toolkit
private static void OnItemsSourceChanged( DependencyObject d, DependencyPropertyChangedEventArgs e )
{
- CollectionEditor collectionEditor = ( CollectionEditor )d;
- if( collectionEditor != null )
- collectionEditor.OnItemSourceChanged( ( IList )e.OldValue, ( IList )e.NewValue );
+ CollectionControl CollectionControl = ( CollectionControl )d;
+ if( CollectionControl != null )
+ CollectionControl.OnItemSourceChanged( ( IList )e.OldValue, ( IList )e.NewValue );
}
public void OnItemSourceChanged( IList oldValue, IList newValue )
@@ -75,7 +72,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( CollectionEditor ), new UIPropertyMetadata( null, new PropertyChangedCallback( ItemsSourceTypeChanged ) ) );
+ public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( CollectionControl ), new UIPropertyMetadata( null, new PropertyChangedCallback( ItemsSourceTypeChanged ) ) );
public Type ItemsSourceType
{
get
@@ -90,9 +87,9 @@ namespace Xceed.Wpf.Toolkit
private static void ItemsSourceTypeChanged( DependencyObject d, DependencyPropertyChangedEventArgs e )
{
- CollectionEditor collectionEditor = ( CollectionEditor )d;
- if( collectionEditor != null )
- collectionEditor.ItemsSourceTypeChanged( ( Type )e.OldValue, ( Type )e.NewValue );
+ CollectionControl CollectionControl = ( CollectionControl )d;
+ if( CollectionControl != null )
+ CollectionControl.ItemsSourceTypeChanged( ( Type )e.OldValue, ( Type )e.NewValue );
}
protected virtual void ItemsSourceTypeChanged( Type oldValue, Type newValue )
@@ -108,7 +105,7 @@ namespace Xceed.Wpf.Toolkit
NewItemTypes = types;
}
- public static readonly DependencyProperty NewItemTypesProperty = DependencyProperty.Register( "NewItemTypes", typeof( IList ), typeof( CollectionEditor ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty NewItemTypesProperty = DependencyProperty.Register( "NewItemTypes", typeof( IList ), typeof( CollectionControl ), new UIPropertyMetadata( null ) );
public IList NewItemTypes
{
get
@@ -121,7 +118,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty SelectedItemProperty = DependencyProperty.Register( "SelectedItem", typeof( object ), typeof( CollectionEditor ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty SelectedItemProperty = DependencyProperty.Register( "SelectedItem", typeof( object ), typeof( CollectionControl ), new UIPropertyMetadata( null ) );
public object SelectedItem
{
get
@@ -138,12 +135,12 @@ namespace Xceed.Wpf.Toolkit
#region Constructors
- static CollectionEditor()
+ static CollectionControl()
{
- DefaultStyleKeyProperty.OverrideMetadata( typeof( CollectionEditor ), new FrameworkPropertyMetadata( typeof( CollectionEditor ) ) );
+ DefaultStyleKeyProperty.OverrideMetadata( typeof( CollectionControl ), new FrameworkPropertyMetadata( typeof( CollectionControl ) ) );
}
- public CollectionEditor()
+ public CollectionControl()
{
Items = new ObservableCollection();
CommandBindings.Add( new CommandBinding( ApplicationCommands.New, AddNew, CanAddNew ) );
@@ -264,7 +261,7 @@ namespace Xceed.Wpf.Toolkit
public void PersistChanges()
{
- IList list = ResolveItemsSource();
+ IList list = ComputeItemsSource();
if( list == null )
return;
@@ -277,7 +274,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- private IList ResolveItemsSource()
+ private IList ComputeItemsSource()
{
if( ItemsSource == null )
ItemsSource = CreateItemsSource();
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml
similarity index 68%
rename from ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml
index 496bbbe6..47d4088c 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml
@@ -7,21 +7,18 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
-
@@ -32,14 +29,14 @@
-
OK
- Cancel
+ Cancel
diff --git a/ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml.cs
similarity index 67%
rename from ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml.cs
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml.cs
index e73003dc..9554a034 100644
--- a/ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/CollectionEditorDialog.xaml.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -25,13 +22,13 @@ using System.Windows;
namespace Xceed.Wpf.Toolkit
{
///
- /// Interaction logic for CollectionEditorDialog.xaml
+ /// Interaction logic for CollectionControlDialog.xaml
///
- public partial class CollectionEditorDialog : Window
+ public partial class CollectionControlDialog : Window
{
#region Properties
- public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( CollectionEditorDialog ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( CollectionControlDialog ), new UIPropertyMetadata( null ) );
public IList ItemsSource
{
get
@@ -44,7 +41,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( CollectionEditorDialog ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( CollectionControlDialog ), new UIPropertyMetadata( null ) );
public Type ItemsSourceType
{
get
@@ -57,7 +54,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty NewItemTypesProperty = DependencyProperty.Register( "NewItemTypes", typeof( IList ), typeof( CollectionEditorDialog ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty NewItemTypesProperty = DependencyProperty.Register( "NewItemTypes", typeof( IList ), typeof( CollectionControlDialog ), new UIPropertyMetadata( null ) );
public IList NewItemTypes
{
get
@@ -74,12 +71,12 @@ namespace Xceed.Wpf.Toolkit
#region Constructors
- public CollectionEditorDialog()
+ public CollectionControlDialog()
{
InitializeComponent();
}
- public CollectionEditorDialog( Type type )
+ public CollectionControlDialog( Type type )
: this()
{
ItemsSourceType = type;
@@ -95,6 +92,11 @@ namespace Xceed.Wpf.Toolkit
Close();
}
+ private void CancelButton_Click( object sender, RoutedEventArgs e )
+ {
+ Close();
+ }
+
#endregion //Event Hanlders
}
}
diff --git a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/PrimitiveTypeCollectionEditor.cs b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.cs
similarity index 71%
rename from ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/PrimitiveTypeCollectionEditor.cs
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.cs
index b843784c..92b2a25e 100644
--- a/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionEditors/Implementation/PrimitiveTypeCollectionEditor.cs
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.cs
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************/
@@ -27,7 +24,7 @@ using System.Windows.Controls;
namespace Xceed.Wpf.Toolkit
{
- public class PrimitiveTypeCollectionEditor : ContentControl
+ public class PrimitiveTypeCollectionControl : ContentControl
{
#region Members
@@ -40,7 +37,7 @@ namespace Xceed.Wpf.Toolkit
#region IsOpen
- public static readonly DependencyProperty IsOpenProperty = DependencyProperty.Register( "IsOpen", typeof( bool ), typeof( PrimitiveTypeCollectionEditor ), new UIPropertyMetadata( false, OnIsOpenChanged ) );
+ public static readonly DependencyProperty IsOpenProperty = DependencyProperty.Register( "IsOpen", typeof( bool ), typeof( PrimitiveTypeCollectionControl ), new UIPropertyMetadata( false, OnIsOpenChanged ) );
public bool IsOpen
{
get
@@ -55,9 +52,9 @@ namespace Xceed.Wpf.Toolkit
private static void OnIsOpenChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
- PrimitiveTypeCollectionEditor primitiveTypeCollectionEditor = o as PrimitiveTypeCollectionEditor;
- if( primitiveTypeCollectionEditor != null )
- primitiveTypeCollectionEditor.OnIsOpenChanged( ( bool )e.OldValue, ( bool )e.NewValue );
+ PrimitiveTypeCollectionControl primitiveTypeCollectionControl = o as PrimitiveTypeCollectionControl;
+ if( primitiveTypeCollectionControl != null )
+ primitiveTypeCollectionControl.OnIsOpenChanged( ( bool )e.OldValue, ( bool )e.NewValue );
}
protected virtual void OnIsOpenChanged( bool oldValue, bool newValue )
@@ -69,7 +66,7 @@ namespace Xceed.Wpf.Toolkit
#region ItemsSource
- public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( PrimitiveTypeCollectionEditor ), new UIPropertyMetadata( null, OnItemsSourceChanged ) );
+ public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register( "ItemsSource", typeof( IList ), typeof( PrimitiveTypeCollectionControl ), new UIPropertyMetadata( null, OnItemsSourceChanged ) );
public IList ItemsSource
{
get
@@ -84,9 +81,9 @@ namespace Xceed.Wpf.Toolkit
private static void OnItemsSourceChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
- PrimitiveTypeCollectionEditor primitiveTypeCollectionEditor = o as PrimitiveTypeCollectionEditor;
- if( primitiveTypeCollectionEditor != null )
- primitiveTypeCollectionEditor.OnItemsSourceChanged( ( IList )e.OldValue, ( IList )e.NewValue );
+ PrimitiveTypeCollectionControl primitiveTypeCollectionControl = o as PrimitiveTypeCollectionControl;
+ if( primitiveTypeCollectionControl != null )
+ primitiveTypeCollectionControl.OnItemsSourceChanged( ( IList )e.OldValue, ( IList )e.NewValue );
}
protected virtual void OnItemsSourceChanged( IList oldValue, IList newValue )
@@ -106,7 +103,7 @@ namespace Xceed.Wpf.Toolkit
#endregion //ItemsSource
- public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( PrimitiveTypeCollectionEditor ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty ItemsSourceTypeProperty = DependencyProperty.Register( "ItemsSourceType", typeof( Type ), typeof( PrimitiveTypeCollectionControl ), new UIPropertyMetadata( null ) );
public Type ItemsSourceType
{
get
@@ -119,7 +116,7 @@ namespace Xceed.Wpf.Toolkit
}
}
- public static readonly DependencyProperty ItemTypeProperty = DependencyProperty.Register( "ItemType", typeof( Type ), typeof( PrimitiveTypeCollectionEditor ), new UIPropertyMetadata( null ) );
+ public static readonly DependencyProperty ItemTypeProperty = DependencyProperty.Register( "ItemType", typeof( Type ), typeof( PrimitiveTypeCollectionControl ), new UIPropertyMetadata( null ) );
public Type ItemType
{
get
@@ -134,7 +131,7 @@ namespace Xceed.Wpf.Toolkit
#region Text
- public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Text", typeof( string ), typeof( PrimitiveTypeCollectionEditor ), new UIPropertyMetadata( null, OnTextChanged ) );
+ public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Text", typeof( string ), typeof( PrimitiveTypeCollectionControl ), new UIPropertyMetadata( null, OnTextChanged ) );
public string Text
{
get
@@ -149,9 +146,9 @@ namespace Xceed.Wpf.Toolkit
private static void OnTextChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
- PrimitiveTypeCollectionEditor primitiveTypeCollectionEditor = o as PrimitiveTypeCollectionEditor;
- if( primitiveTypeCollectionEditor != null )
- primitiveTypeCollectionEditor.OnTextChanged( ( string )e.OldValue, ( string )e.NewValue );
+ PrimitiveTypeCollectionControl primitiveTypeCollectionControl = o as PrimitiveTypeCollectionControl;
+ if( primitiveTypeCollectionControl != null )
+ primitiveTypeCollectionControl.OnTextChanged( ( string )e.OldValue, ( string )e.NewValue );
}
protected virtual void OnTextChanged( string oldValue, string newValue )
@@ -166,12 +163,12 @@ namespace Xceed.Wpf.Toolkit
#region Constructors
- static PrimitiveTypeCollectionEditor()
+ static PrimitiveTypeCollectionControl()
{
- DefaultStyleKeyProperty.OverrideMetadata( typeof( PrimitiveTypeCollectionEditor ), new FrameworkPropertyMetadata( typeof( PrimitiveTypeCollectionEditor ) ) );
+ DefaultStyleKeyProperty.OverrideMetadata( typeof( PrimitiveTypeCollectionControl ), new FrameworkPropertyMetadata( typeof( PrimitiveTypeCollectionControl ) ) );
}
- public PrimitiveTypeCollectionEditor()
+ public PrimitiveTypeCollectionControl()
{
}
@@ -182,14 +179,14 @@ namespace Xceed.Wpf.Toolkit
private void PersistChanges()
{
- IList list = ResolveItemsSource();
+ IList list = ComputeItemsSource();
if( list == null )
return;
//the easiest way to persist changes to the source is to just clear the source list and then add all items to it.
list.Clear();
- IList items = ResolveItems();
+ IList items = ComputeItems();
foreach( var item in items )
{
list.Add( item );
@@ -200,7 +197,7 @@ namespace Xceed.Wpf.Toolkit
SetText( list );
}
- private IList ResolveItems()
+ private IList ComputeItems()
{
IList items = new List();
@@ -233,7 +230,7 @@ namespace Xceed.Wpf.Toolkit
return items;
}
- private IList ResolveItemsSource()
+ private IList ComputeItemsSource()
{
if( ItemsSource == null )
ItemsSource = CreateItemsSource();
diff --git a/ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Themes/Generic.xaml b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Themes/Generic.xaml
similarity index 89%
rename from ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Themes/Generic.xaml
rename to ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Themes/Generic.xaml
index 31ead62b..86e83a01 100644
--- a/ExtendedWPFToolkitSolution_35/Src/Xceed.Wpf.Toolkit/CollectionEditors/Themes/Generic.xaml
+++ b/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/CollectionControl/Themes/Generic.xaml
@@ -7,13 +7,10 @@
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- This program can be provided to you by Xceed Software Inc. under a
- proprietary commercial license agreement for use in non-Open Source
- projects. The commercial version of Extended WPF Toolkit also includes
- priority technical support, commercial updates, and many additional
- useful WPF controls if you license Xceed Business Suite for WPF.
+ For more features, controls, and fast professional support,
+ pick up the Plus edition at http://xceed.com/wpf_toolkit
- Visit http://xceed.com and follow @datagrid on Twitter.
+ Visit http://xceed.com and follow @datagrid on Twitter
**********************************************************************-->
@@ -26,7 +23,7 @@
-
-
-
-
-