diff --git a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.UnityExtensions.dll b/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.UnityExtensions.dll
deleted file mode 100644
index 99c42d6b4..000000000
Binary files a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.UnityExtensions.dll and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.dll b/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.dll
deleted file mode 100644
index 383c1f46d..000000000
Binary files a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Prism.dll and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.ServiceLocation.dll b/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.ServiceLocation.dll
deleted file mode 100644
index 3f8895473..000000000
Binary files a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.ServiceLocation.dll and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Unity.dll b/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Unity.dll
deleted file mode 100644
index 84f1870df..000000000
Binary files a/ExtendedWPFToolkitSolution/Libs/Prism/Microsoft.Practices.Unity.dll and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.DataGrid.Samples.SampleData.dll b/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.DataGrid.Samples.SampleData.dll
deleted file mode 100644
index 9d98cb473..000000000
Binary files a/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.DataGrid.Samples.SampleData.dll and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.Samples.SampleData.dll b/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.Samples.SampleData.dll
new file mode 100644
index 000000000..050b99de0
Binary files /dev/null and b/ExtendedWPFToolkitSolution/Libs/Xceed.Wpf.Samples.SampleData.dll differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/BusyIndicatorModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/BusyIndicatorModule.cs
deleted file mode 100644
index f557ccdd3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/BusyIndicatorModule.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-/************************************************************************
-
- 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.BusyIndicator.NavigationItems;
-using Samples.Modules.BusyIndicator.Views;
-
-namespace Samples.Modules.BusyIndicator
-{
- public class BusyIndicatorModule : ModuleBase
- {
- public BusyIndicatorModule( IUnityContainer container, IRegionManager regionManager )
- : base( container, regionManager )
- {
- }
-
- protected override void RegisterViewsAndTypes()
- {
- Container.RegisterNavigationType( typeof( BusyIndicatorView ) );
- Container.RegisterNavigationType( typeof( BusyIndicatorCustomContentView ) );
- Container.RegisterNavigationType( typeof( BusyIndicatorCustomContentTemplateView ) );
- }
-
- protected override void InitializeModule()
- {
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( BusyIndicatorNavItem ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml
deleted file mode 100644
index 75012fa25..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml.cs
deleted file mode 100644
index 5206b62d7..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/NavigationItems/BusyIndicatorNavItem.xaml.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-/************************************************************************
-
- 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.Windows.Controls;
-
-namespace Samples.Modules.BusyIndicator.NavigationItems
-{
- ///
- /// Interaction logic for BusyIndicatorNavItem.xaml
- ///
- public partial class BusyIndicatorNavItem : TreeViewItem
- {
- public BusyIndicatorNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Properties/AssemblyInfo.cs
deleted file mode 100644
index bc2c59926..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 BusyIndicator Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit BusyIndicator 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.BusyIndicator/Resources/Common.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Resources/Common.xaml
deleted file mode 100644
index 5b3381524..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Resources/Common.xaml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index e7559aab6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Samples.Modules.BusyIndicator.csproj
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {1A9C0E21-DE3B-4B2D-9EF0-39AA1922CDA6}
- library
- Properties
- Samples.Modules.BusyIndicator
- Samples.Modules.BusyIndicator
- v4.0
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
- Client
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BusyIndicatorNavItem.xaml
-
-
- BusyIndicatorCustomContentTemplateView.xaml
-
-
- BusyIndicatorCustomContentView.xaml
-
-
- BusyIndicatorView.xaml
-
-
- Code
-
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- 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.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml
deleted file mode 100644
index e3c868132..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml.cs
deleted file mode 100644
index b4c8f0f6a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentTemplateView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.BusyIndicator.Views
-{
- ///
- /// Interaction logic for BusyIndicatorCustomContentTemplateView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class BusyIndicatorCustomContentTemplateView : DemoView
- {
- public BusyIndicatorCustomContentTemplateView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml
deleted file mode 100644
index a22017866..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml.cs
deleted file mode 100644
index 9f898a72e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorCustomContentView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.BusyIndicator.Views
-{
- ///
- /// Interaction logic for BusyIndicatorCustomContentView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class BusyIndicatorCustomContentView : DemoView
- {
- public BusyIndicatorCustomContentView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml
deleted file mode 100644
index 62f55f6f9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml.cs
deleted file mode 100644
index cad93d4c0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.BusyIndicator/Views/BusyIndicatorView.xaml.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-/************************************************************************
-
- 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.Windows.Data;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.BusyIndicator.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class BusyIndicatorView : DemoView
- {
- public BusyIndicatorView()
- {
- InitializeComponent();
- }
- }
-
- public class IntegerToTimespanConverter : IValueConverter
- {
- public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- return TimeSpan.FromMilliseconds( ( int )value );
- }
-
- public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- throw new NotImplementedException();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/ButtonModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/ButtonModule.cs
deleted file mode 100644
index 1927b06f0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/ButtonModule.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-/************************************************************************
-
- 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.Button.NavigationItems;
-using Samples.Modules.Button.Views;
-
-namespace Samples.Modules.Button
-{
- public class ButtonModule : ModuleBase
- {
- public ButtonModule( IUnityContainer container, IRegionManager regionManager )
- : base( container, regionManager )
- {
- }
-
- protected override void InitializeModule()
- {
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( ButtonSpinnerNavItem ) );
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( DropDownButtonNavItem ) );
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( SplitButtonNavItem ) );
- }
-
- protected override void RegisterViewsAndTypes()
- {
- Container.RegisterNavigationType( typeof( ButtonSpinnerView ) );
- Container.RegisterNavigationType( typeof( DropDownButtonView ) );
- Container.RegisterNavigationType( typeof( SplitButtonView ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml
deleted file mode 100644
index beef61c24..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml.cs
deleted file mode 100644
index 90cbb1145..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/ButtonSpinnerNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Button.NavigationItems
-{
- ///
- /// Interaction logic for ButtonSpinnerNavItem.xaml
- ///
- public partial class ButtonSpinnerNavItem : TreeViewItem
- {
- public ButtonSpinnerNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml
deleted file mode 100644
index 140035b2b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml.cs
deleted file mode 100644
index 36556aec4..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/DropDownButtonNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Button.NavigationItems
-{
- ///
- /// Interaction logic for DropDownButtonNavItem.xaml
- ///
- public partial class DropDownButtonNavItem : TreeViewItem
- {
- public DropDownButtonNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml
deleted file mode 100644
index 0ddabf1e0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml.cs
deleted file mode 100644
index 2a52efb8e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/NavigationItems/SplitButtonNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Button.NavigationItems
-{
- ///
- /// Interaction logic for SplitButtonNavItem.xaml
- ///
- public partial class SplitButtonNavItem : TreeViewItem
- {
- public SplitButtonNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Properties/AssemblyInfo.cs
deleted file mode 100644
index 552e1b379..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Button Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Button 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.Button/Samples.Modules.Button.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj
deleted file mode 100644
index 9437879bd..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Samples.Modules.Button.csproj
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {22F36E4A-98E6-4A1C-96CA-52CA46F19274}
- library
- Properties
- Samples.Modules.Button
- Samples.Modules.Button
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- ButtonSpinnerNavItem.xaml
-
-
- DropDownButtonNavItem.xaml
-
-
- SplitButtonNavItem.xaml
-
-
- ButtonSpinnerView.xaml
-
-
- Code
-
-
- DropDownButtonView.xaml
-
-
- SplitButtonView.xaml
-
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- 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.Button/Views/ButtonSpinnerView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/ButtonSpinnerView.xaml
deleted file mode 100644
index 19c8127e1..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/ButtonSpinnerView.xaml
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- John Smith
- Janel Leverling
- Laura Callahan
- Robert King
- Margaret Peacock
- Andrew Fuller
- Anne Dodsworth
- Nancy Davolio
- Naomi Suyama
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/ButtonSpinnerView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/ButtonSpinnerView.xaml.cs
deleted file mode 100644
index a552f35a4..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/ButtonSpinnerView.xaml.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-/************************************************************************
-
- 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.Windows.Controls;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-using Xceed.Wpf.Toolkit;
-
-namespace Samples.Modules.Button.Views
-{
- ///
- /// Interaction logic for ButtonSpinnerView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class ButtonSpinnerView : DemoView
- {
- public ButtonSpinnerView()
- {
- InitializeComponent();
- }
-
- private void ButtonSpinner_Spin( object sender, SpinEventArgs e )
- {
- String[] names = (String[])this.Resources[ "names" ];
-
- ButtonSpinner spinner = ( ButtonSpinner )sender;
- TextBox txtBox = ( TextBox )spinner.Content;
-
- int value = Array.IndexOf( names, txtBox.Text );
- if( e.Direction == SpinDirection.Increase )
- value++;
- else
- value--;
-
- if( value < 0 )
- value = names.Length - 1;
- else if( value >= names.Length )
- value = 0;
-
- txtBox.Text = names[ value ];
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml
deleted file mode 100644
index ef033ca77..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml.cs
deleted file mode 100644
index 1a06cdd9d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/DropDownButtonView.xaml.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Button.Views
-{
- ///
- /// Interaction logic for DropDownButtonView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class DropDownButtonView : DemoView
- {
- public DropDownButtonView()
- {
- InitializeComponent();
- }
-
- private void DropDownButton_Click( object sender, System.Windows.RoutedEventArgs e )
- {
-
- }
-
- private void Button_Click( object sender, System.Windows.RoutedEventArgs e )
- {
- _dropDownButton.IsOpen = false;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml
deleted file mode 100644
index a7812871b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml.cs
deleted file mode 100644
index 21a44cd0b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Button/Views/SplitButtonView.xaml.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Button.Views
-{
- ///
- /// Interaction logic for SplitButtonView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class SplitButtonView : DemoView
- {
- public SplitButtonView()
- {
- InitializeComponent();
- }
-
- private void SplitButton_Click( object sender, System.Windows.RoutedEventArgs e )
- {
- Xceed.Wpf.Toolkit.MessageBox.Show( "Thanks for clicking me!", "SplitButton Click" );
- }
-
- private void Button_Click( object sender, System.Windows.RoutedEventArgs e )
- {
- _splitButton.IsOpen = false;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/CalculatorModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/CalculatorModule.cs
deleted file mode 100644
index e241e0651..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/CalculatorModule.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-/************************************************************************
-
- 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.Calculator.NavigationItems;
-using Samples.Modules.Calculator.Views;
-
-namespace Samples.Modules.Calculator
-{
- public class CalculatorModule : ModuleBase
- {
- public CalculatorModule( IUnityContainer container, IRegionManager regionManager )
- : base( container, regionManager )
- {
- }
-
- protected override void InitializeModule()
- {
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( CalculatorNavItem ) );
- RegionManager.RegisterViewWithRegion( RegionNames.NavigationRegion, typeof( CalculatorUpDownNavItem ) );
- }
-
- protected override void RegisterViewsAndTypes()
- {
- Container.RegisterNavigationType( typeof( CalculatorView ) );
- Container.RegisterNavigationType( typeof( CalculatorUpDownView ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs
deleted file mode 100644
index 395eab495..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Converters/FormatStringToVisibilityConverter.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-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/NavigationItems/CalculatorNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorNavItem.xaml
deleted file mode 100644
index 34c25893e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorNavItem.xaml.cs
deleted file mode 100644
index 7a9483e2a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Calculator.NavigationItems
-{
- ///
- /// Interaction logic for CalculatorNavItem.xaml
- ///
- public partial class CalculatorNavItem : TreeViewItem
- {
- public CalculatorNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml
deleted file mode 100644
index 9cd7b8e77..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml.cs
deleted file mode 100644
index e31c2ece4..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/NavigationItems/CalculatorUpDownNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Calculator.NavigationItems
-{
- ///
- /// Interaction logic for CalculatorUpDownNavItem.xaml
- ///
- public partial class CalculatorUpDownNavItem : TreeViewItem
- {
- public CalculatorUpDownNavItem()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Properties/AssemblyInfo.cs
deleted file mode 100644
index c5e9f3f6b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Calculator Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Calculator 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.Calculator/Samples.Modules.Calculator.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj
deleted file mode 100644
index 596eb33ae..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Samples.Modules.Calculator.csproj
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {EF6701CF-21C3-45B5-9C90-40BE6130BB7D}
- library
- Properties
- Samples.Modules.Calculator
- Samples.Modules.Calculator
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
-
- CalculatorNavItem.xaml
-
-
- CalculatorUpDownNavItem.xaml
-
-
- Code
-
-
- CalculatorUpDownView.xaml
-
-
- CalculatorView.xaml
-
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- 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.Calculator/Views/CalculatorUpDownView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml
deleted file mode 100644
index 87cf55a29..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- None
- Currency
- Fixed Point
- General
- Number
- Percent
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml.cs
deleted file mode 100644
index cb2028a83..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorUpDownView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Calculator.Views
-{
- ///
- /// Interaction logic for CalculatorUpDownView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class CalculatorUpDownView : DemoView
- {
- public CalculatorUpDownView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml
deleted file mode 100644
index 04c7104cc..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml.cs
deleted file mode 100644
index 15184e052..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Calculator/Views/CalculatorView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Calculator.Views
-{
- ///
- /// Interaction logic for CalculatorView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class CalculatorView : DemoView
- {
- public CalculatorView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/CheckListsModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/CheckListsModule.cs
deleted file mode 100644
index b61760cc6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/CheckListsModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.CheckLists.Views;
-
-namespace Samples.Modules.CheckLists
-{
- public class CheckListsModule : ModuleBase
- {
- public CheckListsModule( 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.CheckLists/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Properties/AssemblyInfo.cs
deleted file mode 100644
index 094cb011c..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 CheckLists Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit CheckLists 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.CheckLists/Samples.Modules.CheckLists.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj
deleted file mode 100644
index 92eb38ebd..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Samples.Modules.CheckLists.csproj
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {910A7A19-DD9F-4989-A001-BD7E5BAD2FE8}
- library
- Properties
- Samples.Modules.CheckLists
- Samples.Modules.CheckLists
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
- Code
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
-
-
- Code
-
-
-
-
-
- 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.CheckLists/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml
deleted file mode 100644
index 3e9b0c23c..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
- ID
- FirstName
- LastName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml.cs
deleted file mode 100644
index f25cd72e3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,135 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.CheckLists.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- this.DataContext = new List()
- {
- new Person(){ID=101, FirstName="John", LastName="Smith"},
- new Person(){ID=102, FirstName="Janel", LastName="Leverling"},
- new Person(){ID=103, FirstName="Laura", LastName="Callahan"},
- new Person(){ID=104, FirstName="Robert", LastName="King"},
- new Person(){ID=105, FirstName="Margaret", LastName="Peacock"},
- new Person(){ID=106, FirstName="Andrew", LastName="Fuller"},
- new Person(){ID=107, FirstName="Anne", LastName="Dodsworth"},
- new Person(){ID=108, FirstName="Nancy", LastName="Davolio"},
- new Person(){ID=109, FirstName="Naomi", LastName="Suyama"},
- };
- }
-
- }
-
- public class Person : INotifyPropertyChanged
- {
- private bool _isSelected;
- private int _ID;
- private string _firstName;
- private string _lastName;
-
- public bool IsSelected
- {
- get
- {
- return _isSelected;
- }
- set
- {
- _isSelected = value;
- OnPropertyChanged( "IsSelected" );
- }
- }
-
- public int ID
- {
- get
- {
- return _ID;
- }
- set
- {
- _ID = value;
- OnPropertyChanged( "ID" );
- }
- }
-
- public string FirstName
- {
- get
- {
- return _firstName;
- }
- set
- {
- _firstName = value;
- OnPropertyChanged( "FirstName" );
- }
- }
-
- public string LastName
- {
- get
- {
- return _lastName;
- }
- set
- {
- _lastName = value;
- OnPropertyChanged( "LastName" );
- }
- }
-
- public string ModelDisplay
- {
- get
- {
- string completeName = string.Format("{0} {1}", FirstName, LastName).PadRight(20);
- return string.Format(
- "ID={0}: Name= {1}, IsSelected= {2}",
- ID,
- completeName,
- IsSelected );
- }
- }
-
- public event PropertyChangedEventHandler PropertyChanged;
- protected void OnPropertyChanged( string propertyName )
- {
- if( PropertyChanged != null )
- {
- PropertyChanged( this, new PropertyChangedEventArgs( propertyName ) );
- PropertyChanged( this, new PropertyChangedEventArgs( "ModelDisplay" ) );
- }
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml
deleted file mode 100644
index fa613eb82..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml.cs
deleted file mode 100644
index 6402721c8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.CheckLists/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.CheckLists.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/ChildWindowModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/ChildWindowModule.cs
deleted file mode 100644
index 5b998131d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/ChildWindowModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.ChildWindow.Views;
-
-namespace Samples.Modules.ChildWindow
-{
- public class ChildWindowModule : ModuleBase
- {
- public ChildWindowModule( 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.ChildWindow/Converters/IntToBoolConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Converters/IntToBoolConverter.cs
deleted file mode 100644
index ea77743e2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Converters/IntToBoolConverter.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-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/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Properties/AssemblyInfo.cs
deleted file mode 100644
index 7ddc404a0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 ChildWindow Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit ChildWindow 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.ChildWindow/Samples.Modules.ChildWindow.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj
deleted file mode 100644
index 8b38c9060..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Samples.Modules.ChildWindow.csproj
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {44733C25-7F22-4B91-83C7-4E654063DFD6}
- library
- Properties
- Samples.Modules.ChildWindow
- Samples.Modules.ChildWindow
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
-
- 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.ChildWindow/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml
deleted file mode 100644
index d7ae1097d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml.cs
deleted file mode 100644
index aedd4c2c9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-/************************************************************************
-
- 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 Xceed.Wpf.Toolkit;
-
-namespace Samples.Modules.ChildWindow.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml
deleted file mode 100644
index c1ddcfd9c..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml.cs
deleted file mode 100644
index be23e1eb3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.ChildWindow/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.ChildWindow.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/ColorModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/ColorModule.cs
deleted file mode 100644
index c8265cf6d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/ColorModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Color.Views;
-
-namespace Samples.Modules.Color
-{
- public class ColorModule : ModuleBase
- {
- public ColorModule( 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.Color/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Properties/AssemblyInfo.cs
deleted file mode 100644
index ab620f6f5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Color Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Color 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.Color/Samples.Modules.Color.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Samples.Modules.Color.csproj
deleted file mode 100644
index 93cbe7527..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Samples.Modules.Color.csproj
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {A36AB9C9-D813-4018-B341-8729A9B5BD7D}
- library
- Properties
- Samples.Modules.Color
- Samples.Modules.Color
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- 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.Color/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml
deleted file mode 100644
index 241bafbf0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml
+++ /dev/null
@@ -1,190 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml.cs
deleted file mode 100644
index bd0cecf33..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Color.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
-
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml
deleted file mode 100644
index d24281212..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml.cs
deleted file mode 100644
index 60ddd5a90..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Color/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Color.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/DataGridModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/DataGridModule.cs
deleted file mode 100644
index 739d1bd76..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/DataGridModule.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-/************************************************************************
-
- 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.DataGrid.Views;
-
-namespace Samples.Modules.DataGrid
-{
- public class DataGridModule : ModuleBase
- {
- public DataGridModule( 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 ) );
- Container.RegisterNavigationType( typeof( FullVersion ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Properties/AssemblyInfo.cs
deleted file mode 100644
index b629e1247..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 DataGrid Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit DataGrid 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.DataGrid/Samples.Modules.DataGrid.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj
deleted file mode 100644
index 4eaeeaf90..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Samples.Modules.DataGrid.csproj
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {129477D9-F413-495F-BE05-D049575BC16C}
- library
- Properties
- Samples.Modules.DataGrid
- Samples.Modules.DataGrid
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
- ..\..\..\..\Libs\Xceed.Wpf.DataGrid.Samples.SampleData.dll
-
-
-
-
- Code
-
-
-
- FullVersion.xaml
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
- Code
-
-
-
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {63648392-6CE9-4A60-96D4-F9FD718D29B0}
- Xceed.Wpf.DataGrid
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- 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.DataGrid/Views/FullVersion.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/FullVersion.xaml
deleted file mode 100644
index 14b74b2c2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/FullVersion.xaml
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-
- The full-featured version of the DataGrid available commercially provides
- additional features such as the following:
-
-
-
- Master-Detail
-
-
- Filter row
-
-
- Insertion row
-
-
- Excel auto-filtering
-
-
- Column chooser
-
-
- CardView, CompactCardView
-
-
- 3DView, MultiSurfaceView
-
-
- Statistical functions and summary row
-
-
- Print, print preview
-
-
- Export to Excel
-
-
- Fixed column splitter UI element
-
-
- Persist user settings
-
-
- Design-time support in Visual Studio and Expression Blend
-
-
- Comprehensive documentation fully integrated into Visual Studio
-
-
- A variety of VB.NET and C# sample applications to get you started
-
-
- Office 2007 themes: Blue, Black, and Silver
-
-
- The Xceed Live Explorer theme
-
-
- Xceed 3D Views for WPF is included
-
-
- And much more!
-
-
-
-
-
-
-
- Click here for more details about the full-featured DataGrid control.
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/FullVersion.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/FullVersion.xaml.cs
deleted file mode 100644
index 06fcdf642..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/FullVersion.xaml.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-/************************************************************************
-
- 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 Xceed.Wpf.DataGrid.Samples.SampleData;
-using System.Data;
-using Xceed.Wpf.DataGrid;
-using System.Diagnostics;
-
-namespace Samples.Modules.DataGrid.Views
-{
- ///
- /// Interaction logic for FullVersion.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class FullVersion : DemoView
- {
- public FullVersion()
- {
- 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.DataGrid/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml
deleted file mode 100644
index 98352f542..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
- The experience that Xceed DataGrid for WPF provides centers on its Tableflow view, which lets you take advantage of a stunning, shaded appearance and capabilities such as inertial smooth scrolling and animated full-column reordering—which mimics the physics of real-life movement. Add to that the datagrid’s zero-lag data virtualization, and you have the fastest WPF datagrid around—in performance and feel.
-
-It's rock-solid and time-tested, so you can trust it in your most important applications. Constantly evolving—no other datagrid is updated as often—it has more features than any other offering and a flexible, extensible object model. It also provides unbeatable performance by handling millions of rows and thousands of columns, and integrates easily into any WPF app. It’s easy to understand why it’s the most-adopted WPF datagrid available and used by Microsoft in Visual Studio 2010 and by IBM U2 in SystemBuilder 4GL (SB+)!
-
-Note: The datagrid included in Xceed Extended WPF Toolkit Plus contains a subset of the features of Xceed DataGrid for WPF.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml.cs
deleted file mode 100644
index 4c56b5e3a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-/************************************************************************
-
- 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 Xceed.Wpf.DataGrid.Samples.SampleData;
-using System.Data;
-using Xceed.Wpf.DataGrid;
-
-namespace Samples.Modules.DataGrid.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- this.Orders = DataProvider.GetNorthwindDataSet().Tables[ "Orders" ];
- InitializeComponent();
- }
-
- public DataTable Orders
- {
- get;
- private set;
- }
-
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml
deleted file mode 100644
index ae1a7d56b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml.cs
deleted file mode 100644
index 42995634c..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DataGrid/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.DataGrid.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Converters/DateTimeToTimeSpanConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Converters/DateTimeToTimeSpanConverter.cs
deleted file mode 100644
index 039ba8cef..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Converters/DateTimeToTimeSpanConverter.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Windows.Data;
-using System.Globalization;
-
-namespace Samples.Modules.DateTime.Converters
-{
- public class DateTimeToTimeSpanConverter : IValueConverter
- {
- public object Convert( object value, Type targetType, object parameter, CultureInfo culture )
- {
- if( value is System.DateTime )
- {
- System.DateTime time = (System.DateTime)value;
- return new TimeSpan( time.Hour, time.Minute, 0 );
- }
- return value;
- }
- public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture )
- {
- throw new NotImplementedException();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/DateTimeModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/DateTimeModule.cs
deleted file mode 100644
index 14119fad2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/DateTimeModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.DateTime.Views;
-
-namespace Samples.Modules.DateTime
-{
- public class DateTimeModule : ModuleBase
- {
- public DateTimeModule( 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.DateTime/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Properties/AssemblyInfo.cs
deleted file mode 100644
index 178cbedbb..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 DateTime Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit DateTime 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.DateTime/Samples.Modules.DateTime.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj
deleted file mode 100644
index 54ad641c8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Samples.Modules.DateTime.csproj
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {CAB850B9-1D47-4F45-A6A5-07B48599B5D7}
- library
- Properties
- Samples.Modules.DateTime
- Samples.Modules.DateTime
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- 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.DateTime/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml
deleted file mode 100644
index 3e8098031..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml.cs
deleted file mode 100644
index bcd2759b8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.DateTime.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml
deleted file mode 100644
index 2654e6dce..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml.cs
deleted file mode 100644
index 57156adf2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.DateTime/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.DateTime.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/ColorConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/ColorConverter.cs
deleted file mode 100644
index 49f2e619a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/ColorConverter.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-/************************************************************************
-
- 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 System.Windows.Data;
-using System.Windows.Media;
-
-namespace Samples.Modules.Magnifier.Converters
-{
- class ColorConverter : IValueConverter
- {
- #region IValueConverter Members
-
- public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- if( (value != null) && value is Color )
- return new SolidColorBrush( (Color)value );
-
- return value;
- }
-
- public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- throw new NotImplementedException();
- }
-
- #endregion
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/VisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/VisibilityConverter.cs
deleted file mode 100644
index a0afac5d8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Converters/VisibilityConverter.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-/************************************************************************
-
- 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 System.Windows.Data;
-using System.Windows.Media;
-using Xceed.Wpf.Toolkit;
-using System.Windows;
-
-namespace Samples.Modules.Magnifier.Converters
-{
- class VisibilityConverter : IValueConverter
- {
- #region IValueConverter Members
-
- public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- if( value is FrameType )
- {
- FrameType frameType = (FrameType)value;
- int param = int.Parse((string)parameter);
- switch( frameType )
- {
- case FrameType.Circle:
- {
- //For the radius
- if( param == 0 )
- return Visibility.Visible;
- //For the rectangle
- else if( param == 1 )
- return Visibility.Collapsed;
- }
- break;
- case FrameType.Rectangle:
- {
- //For the radius
- if( param == 0 )
- return Visibility.Collapsed;
- //For the rectangle
- else if( param == 1 )
- return Visibility.Visible;
- }
- break;
- }
- }
-
- return value;
- }
-
- public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- throw new NotImplementedException();
- }
-
- #endregion
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/MagnifierModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/MagnifierModule.cs
deleted file mode 100644
index e44ea1ca2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/MagnifierModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Magnifier.Views;
-
-namespace Samples.Modules.Magnifier
-{
- public class MagnifierModule : ModuleBase
- {
- public MagnifierModule( 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.Magnifier/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Properties/AssemblyInfo.cs
deleted file mode 100644
index aec6a3834..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-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( "Extended WPF Toolkit Magnifier Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Magnifier 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.Magnifier/Samples.Modules.Magnifier.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj
deleted file mode 100644
index ad9f18421..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Samples.Modules.Magnifier.csproj
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {C3D3FFAD-2DA3-4142-8DE8-7045E347B63A}
- library
- Properties
- Samples.Modules.Magnifier
- Samples.Modules.Magnifier
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- 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.Magnifier/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml
deleted file mode 100644
index 8cdf1e5f8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml.cs
deleted file mode 100644
index 2b196426b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-/************************************************************************
-
- 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.IO;
-using System.Windows;
-using System.Windows.Resources;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.Magnifier.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
-
- // Load and display the RTF file.
- Uri uri = new Uri( "pack://application:,,,/Samples.Modules.Magnifier;component/Resources/SampleText.rtf" );
- StreamResourceInfo info = Application.GetResourceStream( uri );
- using( StreamReader txtReader = new StreamReader( info.Stream ) )
- {
- _txtContent.Text = txtReader.ReadToEnd();
- }
- }
-
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml
deleted file mode 100644
index cdb905c77..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml.cs
deleted file mode 100644
index 636d9f6c9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Magnifier/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Magnifier.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/MessageBoxModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/MessageBoxModule.cs
deleted file mode 100644
index 343a520df..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/MessageBoxModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.MessageBox.Views;
-
-namespace Samples.Modules.MessageBox
-{
- public class MessageBoxModule : ModuleBase
- {
- public MessageBoxModule( 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.MessageBox/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Properties/AssemblyInfo.cs
deleted file mode 100644
index 10a2a0319..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 MessageBox Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit MessageBox 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.MessageBox/Samples.Modules.MessageBox.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj
deleted file mode 100644
index 5bd2ec095..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Samples.Modules.MessageBox.csproj
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {C324395B-C1D1-407B-8745-4AAC39B8BFD9}
- library
- Properties
- Samples.Modules.MessageBox
- Samples.Modules.MessageBox
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- NavigationView.xaml
-
-
- MSBuild:Compile
- Designer
-
-
- HomeView.xaml
- Code
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- Code
-
-
-
-
-
- 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.MessageBox/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/HomeView.xaml
deleted file mode 100644
index 627832e01..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/HomeView.xaml
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/HomeView.xaml.cs
deleted file mode 100644
index 3597e60fa..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.MessageBox.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- private string _standardTitle = "Standard MessageBox";
- private string _styledTitle = "Extended WPF Toolkit MessageBox";
- private string _standardMessage = "The standard system MessageBox will always have this look. No styling is possible.";
- private string _styledMessage = "The Toolkit MessageBox allows you to style it in order to integrate it into your application colors and styles.";
-
- public HomeView()
- {
- InitializeComponent();
- }
-
- private void StandardMessageBoxButton_Click( object sender, System.Windows.RoutedEventArgs e )
- {
- System.Windows.MessageBox.Show( _standardMessage, _standardTitle );
- }
-
- private void StyledMessageBoxButton_Click( object sender, System.Windows.RoutedEventArgs e )
- {
- System.Windows.Style style = ( System.Windows.Style )this.Resources[ "messageBoxStyle" ];
- Xceed.Wpf.Toolkit.MessageBox.Show( null, _styledMessage, _styledTitle, style );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml
deleted file mode 100644
index 19ef4f60b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml.cs
deleted file mode 100644
index d6a4b87c7..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.MessageBox/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.MessageBox.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/NumericModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/NumericModule.cs
deleted file mode 100644
index 716ac43c9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/NumericModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Numeric.Views;
-
-namespace Samples.Modules.Numeric
-{
- public class NumericModule : ModuleBase
- {
- public NumericModule( 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.Numeric/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Properties/AssemblyInfo.cs
deleted file mode 100644
index 914763a91..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Numeric Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Numeric 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.Numeric/Samples.Modules.Numeric.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj
deleted file mode 100644
index 0ea3e3fe5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Samples.Modules.Numeric.csproj
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {CBED4977-79ED-4E46-AA00-0A4D83D333A6}
- library
- Properties
- Samples.Modules.Numeric
- Samples.Modules.Numeric
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- 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.Numeric/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml
deleted file mode 100644
index 9f23e5799..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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.
-
-
-
-
-
-
-
- Numeric up-down controls provide a TextBox with button spinners that allow incrementing
- and decrementing numeric values by using the spinner buttons, keyboard up/down arrows, or mouse wheel.
-
-
- The following controls are available to support various native numeric types:
- ByteUpDown, ShortUpDown, IntegerUpDown, LongUpDown, SingleUpDown, DoubleUpDown, DecimalUpDown.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index 3b2f766bb..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-/************************************************************************
-
- 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.Collections.Generic;
-using System.Globalization;
-using System;
-
-namespace Samples.Modules.Numeric.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- 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.Numeric/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/NavigationView.xaml
deleted file mode 100644
index adf3ddeb8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/NavigationView.xaml.cs
deleted file mode 100644
index c07eb25f6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Numeric/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Numeric.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs
deleted file mode 100644
index 055e79eab..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Converters/ComboBoxToVisibilityConverter.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-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
deleted file mode 100644
index 71165a01d..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AnimatedTimelinePanel.jpg and /dev/null 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
deleted file mode 100644
index f6665ca2b..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/AutoStretchStackPanel.jpg and /dev/null 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
deleted file mode 100644
index 9aeb5e857..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/CameraPanel.jpg and /dev/null 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
deleted file mode 100644
index 9c5457065..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Canvas.jpg and /dev/null 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
deleted file mode 100644
index 66e9f2b7c..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Carousel.jpg and /dev/null 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
deleted file mode 100644
index 2df201c9c..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/DockPanel.jpg and /dev/null 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
deleted file mode 100644
index 34a0b8d16..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/Grid.jpg and /dev/null 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
deleted file mode 100644
index 875e505be..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/PerspectivePanel.jpg and /dev/null 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
deleted file mode 100644
index f9d2aec2e..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RadialCanvas.jpg and /dev/null 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
deleted file mode 100644
index 0d2a1936e..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/RelativeCanvas.jpg and /dev/null 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
deleted file mode 100644
index 72ea46bb9..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackPanel.jpg and /dev/null 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
deleted file mode 100644
index 354897e0c..000000000
Binary files a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/OpenSourceImages/StackedStackPanel.jpg and /dev/null differ
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs
deleted file mode 100644
index 378ec58d8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/PanelsModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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
deleted file mode 100644
index d4f01a3e8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-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
deleted file mode 100644
index e35fa2bca..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Samples.Modules.Panels.csproj
+++ /dev/null
@@ -1,119 +0,0 @@
-
-
-
- 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
deleted file mode 100644
index 90e1bddf1..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index 3d33da119..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelNavItem.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml.cs
deleted file mode 100644
index 714190aa6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Panels/Views/SwitchPanelView.xaml.cs
+++ /dev/null
@@ -1,206 +0,0 @@
-/************************************************************************
-
- 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/PieModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/PieModule.cs
deleted file mode 100644
index c86bb11f0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/PieModule.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-/************************************************************************
-
- 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.Pie.Views;
-
-namespace Samples.Modules.Pie
-{
- public class PieModule : ModuleBase
- {
- public PieModule( 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 ) );
- Container.RegisterNavigationType( typeof( PieChart ) );
- Container.RegisterNavigationType( typeof( PieProgress ) );
-
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Properties/AssemblyInfo.cs
deleted file mode 100644
index 8c93b58e3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Pie Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Pie 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.Pie/Samples.Modules.Pie.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj
deleted file mode 100644
index 86d6afd71..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Samples.Modules.Pie.csproj
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {08E7A934-4991-4CFC-BE12-B43AC6713122}
- library
- Properties
- Samples.Modules.Pie
- Samples.Modules.Pie
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
- PieChart.xaml
-
-
- PieProgress.xaml
-
-
-
-
- Code
-
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- 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.Pie/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/HomeView.xaml
deleted file mode 100644
index 285ac3231..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/HomeView.xaml
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/HomeView.xaml.cs
deleted file mode 100644
index 2e61e4aa9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-/************************************************************************
-
- 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.Data;
-using System.Windows.Media;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Reflection;
-using System.Windows.Controls;
-using Xceed.Wpf.Toolkit;
-
-namespace Samples.Modules.Pie.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
-
- private void ComboBox_SelectionChanged( object sender, System.Windows.Controls.SelectionChangedEventArgs e )
- {
- ComboBox modeCombo = ( ComboBox )sender;
- PieMode newMode = ( PieMode )modeCombo.SelectedItem;
- this.endAngleSlider.IsEnabled = ( newMode != PieMode.Slice );
- this.sliceSlider.IsEnabled = ( newMode != PieMode.EndAngle );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml
deleted file mode 100644
index bf7314017..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml.cs
deleted file mode 100644
index 02e303d5d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Pie.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml
deleted file mode 100644
index 3763b5724..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml
+++ /dev/null
@@ -1,238 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml.cs
deleted file mode 100644
index fa37486e9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieChart.xaml.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-/************************************************************************
-
- 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.Data;
-
-namespace Samples.Modules.Pie.Views
-{
- ///
- /// Interaction logic for PieChart.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class PieChart : DemoView
- {
- public PieChart()
- {
- InitializeComponent();
- }
- }
-
- public class SliceLabelConverter : IValueConverter
- {
- public object Convert( object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- return ( ( double )value ).ToString( "#.#% " + parameter );
- }
-
- public object ConvertBack( object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- throw new System.NotImplementedException();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml
deleted file mode 100644
index 7c5977234..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml.cs
deleted file mode 100644
index c040608f3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Pie/Views/PieProgress.xaml.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-/************************************************************************
-
- 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.Data;
-
-namespace Samples.Modules.Pie.Views
-{
- ///
- /// Interaction logic for PieProgress.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class PieProgress : DemoView
- {
- public PieProgress()
- {
- InitializeComponent();
- }
- }
-
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Properties/AssemblyInfo.cs
deleted file mode 100644
index 403de9dba..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 PropertyGrid Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit PropertyGrid 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.PropertyGrid/PropertyGridModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/PropertyGridModule.cs
deleted file mode 100644
index c705731a6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/PropertyGridModule.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-/************************************************************************
-
- 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.PropertyGrid.Views;
-
-namespace Samples.Modules.PropertyGrid
-{
- public class PropertyGridModule : ModuleBase
- {
- public PropertyGridModule( 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 ) );
- Container.RegisterNavigationType( typeof( CustomEditors ) );
- Container.RegisterNavigationType( typeof( CustomItemsSource ) );
- Container.RegisterNavigationType( typeof( DefaultEditors ) );
- Container.RegisterNavigationType( typeof( ExpandableProperties ) );
- Container.RegisterNavigationType( typeof( SpecifyingProperties ) );
- Container.RegisterNavigationType( typeof( BindingToStructs ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Resources/LastNameUserControlEditor.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Resources/LastNameUserControlEditor.xaml
deleted file mode 100644
index 449352bdc..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Resources/LastNameUserControlEditor.xaml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
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
deleted file mode 100644
index be3aa4d42..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Samples.Modules.PropertyGrid.csproj
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {511FB369-57D2-430B-9002-F367DF165E70}
- library
- Properties
- Samples.Modules.PropertyGrid
- Samples.Modules.PropertyGrid
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- LastNameUserControlEditor.xaml
-
-
-
- Code
-
-
- BindingToStructs.xaml
-
-
- CustomEditors.xaml
-
-
- CustomItemsSource.xaml
-
-
- DefaultEditors.xaml
-
-
- True
- True
- DisplayLocalizationRes.resx
-
-
- ExpandableProperties.xaml
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
- SpecifyingProperties.xaml
-
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
-
-
- ResXFileCodeGenerator
- DisplayLocalizationRes.Designer.cs
- Designer
-
-
-
-
- Designer
-
-
-
-
- xcopy "$(TargetDir)*.*" "$(SolutionDir)Src\Samples\Samples\bin\$(ConfigurationName)\" /Y /S
-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.PropertyGrid/Views/BindingToStructs.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/BindingToStructs.xaml
deleted file mode 100644
index 9842048f8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/BindingToStructs.xaml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/BindingToStructs.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/BindingToStructs.xaml.cs
deleted file mode 100644
index 4fc03c8a5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/BindingToStructs.xaml.cs
+++ /dev/null
@@ -1,119 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows.Data;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for BindingToStructs.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class BindingToStructs : DemoView
- {
- public BindingToStructs()
- {
- InitializeComponent();
- _propertyGrid.SelectedObject = Person.CreatePerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- public Dimension Dimensions
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.Dimensions = new Dimension()
- {
- Height = 75.0,
- Weight = 185.76
- };
- return person;
- }
- }
- }
-
- public struct Dimension
- {
- public double Height;
- public double Weight;
-
- public Dimension( double height, double weight )
- {
- this.Height = height;
- this.Weight = weight;
- }
- }
-
- public class DimensionsConverter : IValueConverter
- {
- static Dimension _originalValue; // the static struct that stores original value at the start of editing
-
- public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- _originalValue = ( ( Dimension )value );
-
- if( parameter.ToString() == "Height" )
- return ( ( Dimension )value ).Height;
- if( parameter.ToString() == "Weight" )
- return ( ( Dimension )value ).Weight;
-
- return _originalValue;
- }
-
- public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- if( parameter.ToString() == "Height" )
- _originalValue = new Dimension( double.Parse( value.ToString() ), _originalValue.Weight );
- if( parameter.ToString() == "Weight" )
- _originalValue = new Dimension( _originalValue.Height, double.Parse( value.ToString() ) );
-
- return _originalValue;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml
deleted file mode 100644
index c07118ce5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml.cs
deleted file mode 100644
index 89127833e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomEditors.xaml.cs
+++ /dev/null
@@ -1,246 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Media;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for CustomEditors.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class CustomEditors : DemoView
- {
- public CustomEditors()
- {
- InitializeComponent();
- _propertyGrid1.SelectedObject = Person.CreatePerson();
- _propertyGrid2.SelectedObject = CustomAttributEditorPerson.CreateCustomAttributEditorPerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Date of Birth" )]
- [Description( "This property uses the DateTimeUpDown as the default editor." )]
- public DateTime DateOfBirth
- {
- get;
- set;
- }
-
- [DisplayName( "Grade Point Average" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double GradePointAvg
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [Description( "This property uses the IntegerUpDown as the default editor." )]
- public int Age
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Is Male" )]
- [Description( "This property uses a CheckBox as the default editor." )]
- public bool IsMale
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Favorite Color" )]
- [Description( "This property uses the ColorPicker as the default editor." )]
- public Color FavoriteColor
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Hand" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public HorizontalAlignment WritingHand
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public FontFamily WritingFont
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font Size" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double WritingFontSize
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [DisplayName( "Pet Names" )]
- [Description( "This property uses the PrimitiveTypeCollectionEditor as the default editor." )]
- public List PetNames
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property uses the CollectionEditor as the default editor." )]
- public List Friends
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property is a complex property and has no default editor." )]
- public Person Spouse
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.DateOfBirth = new DateTime( 1975, 1, 23 );
- person.Age = DateTime.Today.Year - person.DateOfBirth.Year;
- person.GradePointAvg = 3.98;
- person.IsMale = true;
- person.FavoriteColor = Colors.Blue;
- person.WritingHand = System.Windows.HorizontalAlignment.Right;
- person.WritingFont = new FontFamily( "Arial" );
- person.WritingFontSize = 12.5;
- person.PetNames = new List() { "Pet 1", "Pet 2", "Pet 3" };
- person.Friends = new List() { new Person() { FirstName = "First", LastName = "Friend" }, new Person() { FirstName = "Second", LastName = "Friend" } };
- person.Spouse = new Person()
- {
- FirstName = "Jane",
- LastName = "Doe"
- };
- return person;
- }
- }
-
- public class CustomAttributEditorPerson
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- //This custom editor is a Class that implements the ITypeEditor interface
- [Editor( typeof( FirstNameEditor ), typeof( FirstNameEditor ) )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- //This custom editor is a UserControl that implements the ITypeEditor interface
- [Editor( typeof( LastNameUserControlEditor ), typeof( LastNameUserControlEditor ) )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Date of Birth" )]
- [Description( "This property uses the DateTimeUpDown as the default editor." )]
- public DateTime DateOfBirth
- {
- get;
- set;
- }
-
- public static CustomAttributEditorPerson CreateCustomAttributEditorPerson()
- {
- var person = new CustomAttributEditorPerson();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.DateOfBirth = new DateTime( 1975, 1, 23 );
- return person;
- }
- }
- }
-
- //Custom editors that are used as attributes MUST implement the ITypeEditor interface.
- public class FirstNameEditor : Xceed.Wpf.Toolkit.PropertyGrid.Editors.ITypeEditor
- {
- public FrameworkElement ResolveEditor( Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem propertyItem )
- {
- TextBox textBox = new TextBox();
- textBox.Background = new SolidColorBrush( Colors.Red );
-
- //create the binding from the bound property item to the editor
- var _binding = new Binding( "Value" ); //bind to the Value property of the PropertyItem
- _binding.Source = propertyItem;
- _binding.ValidatesOnExceptions = true;
- _binding.ValidatesOnDataErrors = true;
- _binding.Mode = propertyItem.IsReadOnly ? BindingMode.OneWay : BindingMode.TwoWay;
- BindingOperations.SetBinding( textBox, TextBox.TextProperty, _binding );
- return textBox;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml
deleted file mode 100644
index 18bbf862d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml.cs
deleted file mode 100644
index 09ab7b2b6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/CustomItemsSource.xaml.cs
+++ /dev/null
@@ -1,137 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows;
-using System.Windows.Media;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for CustomItemsSource.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class CustomItemsSource : DemoView
- {
- public CustomItemsSource()
- {
- InitializeComponent();
- _propertyGrid.SelectedObject = Person.CreatePerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Date of Birth" )]
- [Description( "This property uses the DateTimeUpDown as the default editor." )]
- public DateTime DateOfBirth
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Hand" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public HorizontalAlignment WritingHand
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public FontFamily WritingFont
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font Size" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- [ItemsSource( typeof( FontSizeItemsSource ) )]
- public double WritingFontSize
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.DateOfBirth = new DateTime( 1975, 1, 23 );
- person.WritingHand = System.Windows.HorizontalAlignment.Right;
- person.WritingFont = new FontFamily( "Arial" );
- person.WritingFontSize = 12.0;
- return person;
- }
- }
- }
-
- public class FontSizeItemsSource : IItemsSource
- {
- public ItemCollection GetValues()
- {
- ItemCollection sizes = new ItemCollection();
- sizes.Add( 5.0, "Five" );
- sizes.Add( 5.5 );
- sizes.Add( 6.0, "Six" );
- sizes.Add( 6.5 );
- sizes.Add( 7.0, "Seven" );
- sizes.Add( 7.5 );
- sizes.Add( 8.0, "Eight" );
- sizes.Add( 8.5 );
- sizes.Add( 9.0, "Nine" );
- sizes.Add( 9.5 );
- sizes.Add( 10.0 );
- sizes.Add( 12.0, "Twelve" );
- sizes.Add( 14.0 );
- sizes.Add( 16.0 );
- sizes.Add( 18.0 );
- sizes.Add( 20.0 );
- return sizes;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml
deleted file mode 100644
index 3c6388687..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml.cs
deleted file mode 100644
index 7f5bb6096..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/DefaultEditors.xaml.cs
+++ /dev/null
@@ -1,181 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows;
-using System.Windows.Media;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for DefaultEditors.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class DefaultEditors : DemoView
- {
- public DefaultEditors()
- {
- InitializeComponent();
- _propertyGrid.SelectedObject = Person.CreatePerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Date of Birth" )]
- [Description( "This property uses the DateTimeUpDown as the default editor." )]
- public DateTime DateOfBirth
- {
- get;
- set;
- }
-
- [DisplayName( "Grade Point Average" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double GradePointAvg
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [Description( "This property uses the IntegerUpDown as the default editor." )]
- public int Age
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Is Male" )]
- [Description( "This property uses a CheckBox as the default editor." )]
- public bool IsMale
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Favorite Color" )]
- [Description( "This property uses the ColorPicker as the default editor." )]
- public Color FavoriteColor
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Hand" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public HorizontalAlignment WritingHand
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public FontFamily WritingFont
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font Size" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double WritingFontSize
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [DisplayName( "Pet Names" )]
- [Description( "This property uses the PrimitiveTypeCollectionEditor as the default editor." )]
- public List PetNames
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property uses the CollectionEditor as the default editor." )]
- public List Friends
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property is a complex property and has no default editor." )]
- public Person Spouse
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.DateOfBirth = new DateTime( 1975, 1, 23 );
- person.Age = DateTime.Today.Year - person.DateOfBirth.Year;
- person.GradePointAvg = 3.98;
- person.IsMale = true;
- person.FavoriteColor = Colors.Blue;
- person.WritingHand = System.Windows.HorizontalAlignment.Right;
- person.WritingFont = new FontFamily( "Arial" );
- person.WritingFontSize = 12.5;
- person.PetNames = new List() { "Pet 1", "Pet 2", "Pet 3" };
- person.Friends = new List() { new Person() { FirstName = "First", LastName = "Friend" }, new Person() { FirstName = "Second", LastName = "Friend" } };
- person.Spouse = new Person()
- {
- FirstName = "Jane",
- LastName = "Doe"
- };
- return person;
- }
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml
deleted file mode 100644
index d968f69c1..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index 936a4cae8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/ExpandableProperties.xaml.cs
+++ /dev/null
@@ -1,104 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows.Media;
-using Samples.Infrastructure.Controls;
-using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for ExpandableProperties.xaml
- ///
- public partial class ExpandableProperties : DemoView
- {
- public ExpandableProperties()
- {
- InitializeComponent();
- _propertyGrid.SelectedObject = Person.CreatePerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public FontFamily WritingFont
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font Size" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double WritingFontSize
- {
- get;
- set;
- }
-
-
- [Category( "Conections" )]
- [Description( "This property is a complex property and has no default editor." )]
- [ExpandableObject]
- public Person Spouse
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.WritingFont = new FontFamily( "Arial" );
- person.WritingFontSize = 12.5;
- person.Spouse = new Person()
- {
- FirstName = "Jane",
- 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
deleted file mode 100644
index 27f12704d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml.cs
deleted file mode 100644
index a0a8d2538..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
-
- private void OnButtonClick( object sender, EventArgs e )
- {
- _propertyGrid.SelectedObject = sender;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml
deleted file mode 100644
index 154117681..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml.cs
deleted file mode 100644
index 34eaf909a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.PropertyGrid.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml
deleted file mode 100644
index c3bfbaa48..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml.cs
deleted file mode 100644
index 374164d21..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.PropertyGrid/Views/SpecifyingProperties.xaml.cs
+++ /dev/null
@@ -1,181 +0,0 @@
-/************************************************************************
-
- 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.ComponentModel;
-using System.Windows;
-using System.Windows.Media;
-using Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.PropertyGrid.Views
-{
- ///
- /// Interaction logic for SpecifyingProperties.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class SpecifyingProperties : DemoView
- {
- public SpecifyingProperties()
- {
- InitializeComponent();
- _propertyGrid.SelectedObject = Person.CreatePerson();
- }
-
- public class Person
- {
- [Category( "Information" )]
- [DisplayName( "First Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string FirstName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Last Name" )]
- [Description( "This property uses a TextBox as the default editor." )]
- public string LastName
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Date of Birth" )]
- [Description( "This property uses the DateTimeUpDown as the default editor." )]
- public DateTime DateOfBirth
- {
- get;
- set;
- }
-
- [DisplayName( "Grade Point Average" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double GradePointAvg
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [Description( "This property uses the IntegerUpDown as the default editor." )]
- public int Age
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Is Male" )]
- [Description( "This property uses a CheckBox as the default editor." )]
- public bool IsMale
- {
- get;
- set;
- }
-
- [Category( "Information" )]
- [DisplayName( "Favorite Color" )]
- [Description( "This property uses the ColorPicker as the default editor." )]
- public Color FavoriteColor
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Hand" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public HorizontalAlignment WritingHand
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font" )]
- [Description( "This property uses a ComboBox as the default editor. The ComboBox is auto populated with the enum values" )]
- public FontFamily WritingFont
- {
- get;
- set;
- }
-
- [Category( "Writing" )]
- [DisplayName( "Writing Font Size" )]
- [Description( "This property uses the DoubleUpDown as the default editor." )]
- public double WritingFontSize
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [DisplayName( "Pet Names" )]
- [Description( "This property uses the PrimitiveTypeCollectionEditor as the default editor." )]
- public List PetNames
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property uses the CollectionEditor as the default editor." )]
- public List Friends
- {
- get;
- set;
- }
-
- [Category( "Conections" )]
- [Description( "This property is a complex property and has no default editor." )]
- public Person Spouse
- {
- get;
- set;
- }
-
- public static Person CreatePerson()
- {
- var person = new Person();
- person.FirstName = "John";
- person.LastName = "Doe";
- person.DateOfBirth = new DateTime( 1975, 1, 23 );
- person.Age = DateTime.Today.Year - person.DateOfBirth.Year;
- person.GradePointAvg = 3.98;
- person.IsMale = true;
- person.FavoriteColor = Colors.Blue;
- person.WritingHand = System.Windows.HorizontalAlignment.Right;
- person.WritingFont = new FontFamily( "Arial" );
- person.WritingFontSize = 12.5;
- person.PetNames = new List() { "Pet 1", "Pet 2", "Pet 3" };
- person.Friends = new List() { new Person() { FirstName = "First", LastName = "Friend" }, new Person() { FirstName = "Second", LastName = "Friend" } };
- person.Spouse = new Person()
- {
- FirstName = "Jane",
- LastName = "Doe"
- };
- return person;
- }
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Properties/AssemblyInfo.cs
deleted file mode 100644
index 264e54b6d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Text Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Text 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.Text/Resources/PlainData.txt b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/PlainData.txt
deleted file mode 100644
index 72443a9f6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/PlainData.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-This is the RichTextBox
-in Plain Format
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/RtfData.txt b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/RtfData.txt
deleted file mode 100644
index 3d527eb91..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/RtfData.txt
+++ /dev/null
@@ -1 +0,0 @@
- {\rtf1\ansi\ansicpg1252\uc1\htmautsp\deff2{\fonttbl{\f0\fcharset0 Times New Roman;}{\f2\fcharset0 Segoe UI;}}{\colortbl\red0\green0\blue0;\red255\green255\blue255;}\loch\hich\dbch\pard\plain\ltrpar\itap0{\lang1033\fs18\f2\cf0 \cf0\ql{\f2 {\ltrch This is the }{\b\ltrch RichTextBox}{\ltrch in Rtf Format }\li0\ri0\sa0\sb0\fi0\ql\par}}}
\ No newline at end of file
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/XamlData.txt b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/XamlData.txt
deleted file mode 100644
index baa769468..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Resources/XamlData.txt
+++ /dev/null
@@ -1 +0,0 @@
-This is the RichTextBoxin XAML Format
\ No newline at end of file
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
deleted file mode 100644
index 9e4499ca7..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Samples.Modules.Text.csproj
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {10EFEFC6-F2CC-4C6E-955C-668B17F7F342}
- library
- Properties
- Samples.Modules.Text
- Samples.Modules.Text
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- Code
-
-
- AutoSelectTextBoxView.xaml
-
-
- HomeView.xaml
-
-
- MaskedTextBoxView.xaml
-
-
- MultiLineTextEditorView.xaml
-
-
- NavigationView.xaml
-
-
- RichTextBoxView.xaml
-
-
- WatermarkTextBoxView.xaml
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- 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.Text/TextModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/TextModule.cs
deleted file mode 100644
index 1f0db4f13..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/TextModule.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-/************************************************************************
-
- 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.Text.Views;
-
-namespace Samples.Modules.Text
-{
- public class TextModule : ModuleBase
- {
- public TextModule( 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 ) );
- Container.RegisterNavigationType( typeof( MaskedTextBoxView ) );
- Container.RegisterNavigationType( typeof( MultiLineTextEditorView ) );
- Container.RegisterNavigationType( typeof( RichTextBoxView ) );
- Container.RegisterNavigationType( typeof( WatermarkTextBoxView ) );
- Container.RegisterNavigationType( typeof( AutoSelectTextBoxView ) );
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml
deleted file mode 100644
index 5df1f011a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AutoSelectBehavior:
-
- The value of the "AutoSelectBehavior" property determines whether the content of the AutoSelectTextBox will be selected or not when the control gets the focus.
-
-
- AutoMoveFocus:
-
- Effect with "MaxLength" property:
-
-
- Setting the "MaxLength" of the text box allows the focus to move from the AutoSelectTextBox once the max length has been reached.
- In the following "Telephone Number" fields, the "MaxLength" properties of the controls have been set to 3, 3, and 4.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Effect with Arrow keys
-
-
- Setting "AutoMoveFocus" to true also allows navigating the focus through the controls using the arrow keys to move the focus up, down, left, or right.
- You are no longer limited to the "left-right" navigation of the "Tab, Shift-Tab" keys.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml.cs
deleted file mode 100644
index 6a7dc3405..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/AutoSelectTextBoxView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Text.Views
-{
- ///
- /// Interaction logic for WatermarkTextBoxView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class AutoSelectTextBoxView : DemoView
- {
- public AutoSelectTextBoxView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml
deleted file mode 100644
index 6ed815c2f..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml.cs
deleted file mode 100644
index 310095f4e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-/************************************************************************
-
- 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 Microsoft.Practices.Prism.Regions;
-using Samples.Infrastructure.Controls;
-
-namespace Samples.Modules.Text.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
-
- public class Email
- {
- public int Id
- {
- get;
- set;
- }
- public string FirstName
- {
- get;
- set;
- }
- public string LastName
- {
- get;
- set;
- }
- public string EmailAddress
- {
- get;
- set;
- }
-
- public string FullName
- {
- get
- {
- return String.Format( "{0}, {1}", LastName, FirstName );
- }
- }
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml
deleted file mode 100644
index 3ab8ab7e8..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml.cs
deleted file mode 100644
index 6d9ff25b7..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MaskedTextBoxView.xaml.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Text.Views
-{
- ///
- /// Interaction logic for MaskedTextBoxView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class MaskedTextBoxView : DemoView
- {
- public MaskedTextBoxView()
- {
- InitializeComponent();
- _mask.TextChanged += new System.Windows.Controls.TextChangedEventHandler( _mask_TextChanged );
- }
-
- void _mask_TextChanged( object sender, System.Windows.Controls.TextChangedEventArgs e )
- {
- _maskedTextBox.Value = null;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml
deleted file mode 100644
index 70dc3365a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs
deleted file mode 100644
index 62380b310..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/MultiLineTextEditorView.xaml.cs
+++ /dev/null
@@ -1,90 +0,0 @@
-/************************************************************************
-
- 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.Collections.Generic;
-namespace Samples.Modules.Text.Views
-{
- public class Movie
- {
- public string Title
- {
- get;
- set;
- }
-
- public string Review
- {
- get;
- set;
- }
-
- public double Rating
- {
- get;
- set;
- }
- }
-
- ///
- /// Interaction logic for MultiLineTextEditor.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class MultiLineTextEditorView : DemoView
- {
- public MultiLineTextEditorView()
- {
- InitializeComponent();
- _dataGrid.DataContext = InitMovieList();
- }
-
- private List InitMovieList()
- {
- List movieList = new List();
- movieList.Add( new Movie()
- {
- 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, 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 criminal.",
- Rating = 7.8
- } );
- movieList.Add( new Movie()
- {
- Title = "Indiana Jones",
- Review = "Harrison Ford strikes back for an action-packed movie in the jungle to find a mysterious Crystal skull.",
- Rating = 6.4
- } );
-
- return movieList;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml
deleted file mode 100644
index 18964b943..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml.cs
deleted file mode 100644
index 8a2d584f9..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Text.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml
deleted file mode 100644
index 7ca777864..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Plain Text
- RTF
- Xaml
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml.cs
deleted file mode 100644
index 38b98ab6d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/RichTextBoxView.xaml.cs
+++ /dev/null
@@ -1,96 +0,0 @@
-/************************************************************************
-
- 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 Xceed.Wpf.Toolkit;
-using System;
-using System.Windows.Resources;
-using System.Windows;
-using System.IO;
-namespace Samples.Modules.Text.Views
-{
- public enum TextFormatterEnum
- {
- PlainText,
- Rtf,
- Xaml
- };
-
- ///
- /// Interaction logic for RichTextBox.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class RichTextBoxView : DemoView
- {
- public RichTextBoxView()
- {
- InitializeComponent();
- }
-
- public override void OnApplyTemplate()
- {
- base.OnApplyTemplate();
-
- UpdateValues( _textFormatter );
- }
-
- private void OnTextFormatterChanged( object sender, SelectionChangedEventArgs args )
- {
- ComboBox comboBox = sender as ComboBox;
- UpdateValues( comboBox );
- }
-
- private void UpdateValues( ComboBox comboBox )
- {
- if( ( comboBox != null ) && ( _text != null ) && ( _richTextBox != null ) )
- {
- object tagValue = ( ( ComboBoxItem )comboBox.SelectedItem ).Tag;
- if( object.Equals( TextFormatterEnum.PlainText, tagValue ) )
- {
- _text.Text = GetDataFromResource( "/Samples.Modules.Text;component/Resources/PlainData.txt" );
- _richTextBox.TextFormatter = new PlainTextFormatter();
- }
- else if( object.Equals( TextFormatterEnum.Rtf, tagValue ) )
- {
- _text.Text = GetDataFromResource( "/Samples.Modules.Text;component/Resources/RtfData.txt" );
- _richTextBox.TextFormatter = new RtfFormatter();
- }
- else if( object.Equals( TextFormatterEnum.Xaml, tagValue ) )
- {
- _text.Text = GetDataFromResource( "/Samples.Modules.Text;component/Resources/XamlData.txt" );
- _richTextBox.TextFormatter = new XamlFormatter();
- }
- }
- }
-
- private string GetDataFromResource( string uriString )
- {
- Uri uri = new Uri( uriString, UriKind.Relative );
- StreamResourceInfo info = Application.GetResourceStream( uri );
-
- StreamReader reader = new StreamReader( info.Stream );
- string data = reader.ReadToEnd();
- reader.Close();
-
- return data;
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml
deleted file mode 100644
index 114c1b27a..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml.cs
deleted file mode 100644
index aba00c238..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Text/Views/WatermarkTextBoxView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.Text.Views
-{
- ///
- /// Interaction logic for WatermarkTextBoxView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class WatermarkTextBoxView : DemoView
- {
- public WatermarkTextBoxView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs
deleted file mode 100644
index 021244fc3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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
deleted file mode 100644
index 6ee789df5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Samples.Modules.Themes.csproj
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
- 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
deleted file mode 100644
index c1184bdd1..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/ThemesModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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
deleted file mode 100644
index 5cb997faf..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- 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
deleted file mode 100644
index 4b2933ccf..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-/************************************************************************
-
- 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
deleted file mode 100644
index 9522b100c..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index c3e3e69e2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Themes/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Properties/AssemblyInfo.cs
deleted file mode 100644
index e541620f3..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 TimelinePanel Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit TimelinePanel 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.TimelinePanel/Samples.Modules.TimelinePanel.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj
deleted file mode 100644
index b71880520..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Samples.Modules.TimelinePanel.csproj
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {9FCBCEF6-6E41-4CD5-A49B-456890A038BA}
- Library
- Properties
- Samples.Modules.TimelinePanel
- Samples.Modules.TimelinePanel
- v4.0
- 512
- Client
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
- 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.TimelinePanel/TimelinePanelModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/TimelinePanelModule.cs
deleted file mode 100644
index 571de28d6..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/TimelinePanelModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.TimelinePanel.Views;
-
-namespace Samples.Modules.TimelinePanel
-{
- public class TimelinePanelModule : ModuleBase
- {
- public TimelinePanelModule( 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.TimelinePanel/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/HomeView.xaml
deleted file mode 100644
index 86a02fdd5..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/HomeView.xaml
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/HomeView.xaml.cs
deleted file mode 100644
index 1a3833e0f..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-/************************************************************************
-
- 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;
-
-namespace Samples.Modules.TimelinePanel.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml
deleted file mode 100644
index 4adeedfb4..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml.cs
deleted file mode 100644
index 2205a82ba..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.TimelinePanel/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.TimelinePanel.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Properties/AssemblyInfo.cs
deleted file mode 100644
index bd30d9b82..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Wizard Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Wizard 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.Wizard/Samples.Modules.Wizard.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj
deleted file mode 100644
index 4a15ff41e..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Samples.Modules.Wizard.csproj
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {DB0F7672-AFCC-4152-A231-7DCFDD5F219F}
- library
- Properties
- Samples.Modules.Wizard
- Samples.Modules.Wizard
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- Code
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
-
-
-
-
-
- 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.Wizard/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml
deleted file mode 100644
index efb64af6f..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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
deleted file mode 100644
index eefa7a72d..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-/************************************************************************
-
- 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;
-using System;
-
-namespace Samples.Modules.Wizard.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [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.Wizard/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/NavigationView.xaml
deleted file mode 100644
index 482508e42..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/NavigationView.xaml.cs
deleted file mode 100644
index 997dab4f7..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Wizard.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/WizardModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/WizardModule.cs
deleted file mode 100644
index b60bfffec..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Wizard/WizardModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Wizard.Views;
-
-namespace Samples.Modules.Wizard
-{
- public class WizardModule : ModuleBase
- {
- public WizardModule( 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.Zoombox/Properties/AssemblyInfo.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Properties/AssemblyInfo.cs
deleted file mode 100644
index 61d5d37a1..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-/************************************************************************
-
- 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 Zoombox Sample" )]
-[assembly: AssemblyDescription( "" )]
-[assembly: AssemblyConfiguration( "" )]
-[assembly: AssemblyCompany( "Xceed Software Inc." )]
-[assembly: AssemblyProduct( "Extended WPF Toolkit Zoombox 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.Zoombox/Samples.Modules.Zoombox.csproj b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj
deleted file mode 100644
index 58d7702f0..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Samples.Modules.Zoombox.csproj
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {D6581837-4158-4165-BE2F-35EBF9742A54}
- library
- Properties
- Samples.Modules.Zoombox
- Samples.Modules.Zoombox
- v4.0
- Client
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Prism.dll
-
-
- False
- ..\..\..\..\Libs\Prism\Microsoft.Practices.Unity.dll
-
-
- {72E591D6-8F83-4D8C-8F67-9C325E623234}
- Xceed.Wpf.Toolkit
-
-
- {A4A049A4-665A-4651-9046-7D06E9D0CCDC}
- Samples.Infrastructure
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
-
- HomeView.xaml
-
-
- NavigationView.xaml
-
-
- Code
-
-
-
-
-
-
-
-
-
- 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.Zoombox/Views/HomeView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/HomeView.xaml
deleted file mode 100644
index 88690f8cf..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/HomeView.xaml
+++ /dev/null
@@ -1,489 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Fit
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/HomeView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/HomeView.xaml.cs
deleted file mode 100644
index bd6b8f1a2..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/HomeView.xaml.cs
+++ /dev/null
@@ -1,129 +0,0 @@
-/************************************************************************
-
- 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.Data;
-using System;
-using System.Windows;
-
-namespace Samples.Modules.Zoombox.Views
-{
- ///
- /// Interaction logic for HomeView.xaml
- ///
- [RegionMemberLifetime( KeepAlive = false )]
- public partial class HomeView : DemoView
- {
- public HomeView()
- {
- InitializeComponent();
- }
-
- private void AdjustAnimationDuration( object sender, RoutedPropertyChangedEventArgs e )
- {
- Slider slider = sender as Slider;
- if( slider == null )
- return;
-
- zoombox.AnimationDuration = TimeSpan.FromMilliseconds( slider.Value );
- }
-
- private void CoerceAnimationRatios( object sender, RoutedPropertyChangedEventArgs e )
- {
- Slider slider = sender as Slider;
- if( slider == null )
- return;
-
- Slider otherRatio = ( sender == this.AccelerationSlider ) ? this.DecelerationSlider : this.AccelerationSlider;
-
- if( slider.Value + otherRatio.Value > 1 )
- {
- otherRatio.Value = 1 - slider.Value;
- }
- }
- }
-
- public abstract class SimpleConverter : IValueConverter
- {
- protected abstract object Convert( object value );
-
- public object Convert( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- return this.Convert( value );
- }
-
- public object ConvertBack( object value, Type targetType, object parameter, System.Globalization.CultureInfo culture )
- {
- throw new NotImplementedException();
- }
- }
-
- public class ViewNameConverter : SimpleConverter
- {
- protected override object Convert( object value )
- {
- return value.ToString().Remove( 0, 13 );
- }
- }
-
-
- public class ViewFinderConverter : SimpleConverter
- {
- protected override object Convert( object value )
- {
- return ( value != null ) ? value.GetType().Name : null;
- }
- }
-
- public class RectConverter : SimpleConverter
- {
- protected override object Convert( object value )
- {
- return string.Format( "({0}),({1})",
- PointConverter.ConvertPoint( ( ( Rect )value ).TopLeft ),
- PointConverter.ConvertPoint( ( ( Rect )value ).BottomRight ) );
- }
- }
-
- public class PointConverter : SimpleConverter
- {
- protected override object Convert( object value )
- {
- return PointConverter.ConvertPoint( ( Point )value );
- }
-
- public static string ConvertPoint( Point point )
- {
- return string.Format( "{0},{1}",
- Math.Round( point.X ), Math.Round( point.Y ) );
- }
- }
-
- public class ViewStackCountConverter : SimpleConverter
- {
- protected override object Convert( object value )
- {
- return ( ( int )value ) - 1;
- }
- }
-
-
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml
deleted file mode 100644
index 7b9b59551..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml.cs
deleted file mode 100644
index 81dd13cde..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/Views/NavigationView.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-/************************************************************************
-
- 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.Zoombox.Views
-{
- ///
- /// Interaction logic for NavigationView.xaml
- ///
- public partial class NavigationView : TreeViewItem
- {
- public NavigationView()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/ZoomboxModule.cs b/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/ZoomboxModule.cs
deleted file mode 100644
index 70c7343cf..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Modules/Samples.Modules.Zoombox/ZoomboxModule.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Zoombox.Views;
-
-namespace Samples.Modules.Zoombox
-{
- public class ZoomboxModule : ModuleBase
- {
- public ZoomboxModule( 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/Samples.Infrastructure/Commands/TreeViewCommandBehavior.cs b/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Commands/TreeViewCommandBehavior.cs
deleted file mode 100644
index 30e88361b..000000000
--- a/ExtendedWPFToolkitSolution/Src/Samples/Samples.Infrastructure/Commands/TreeViewCommandBehavior.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-/************************************************************************
-
- 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.Windows;
-using System.Windows.Controls;
-using Microsoft.Practices.Prism.Commands;
-
-namespace Samples.Infrastructure.Commands
-{
- public class TreeViewCommandBehavior : CommandBehaviorBase
- {
- public TreeViewCommandBehavior( TreeView treeView )
- : base( treeView )
- {
- treeView.SelectedItemChanged += SelectedItemChanged;
- }
-
- void SelectedItemChanged( object sender, RoutedPropertyChangedEventArgs