diff --git a/AutoCompleteBox/AddNewItemsWithButton/AddNewItemsWithButton_WPF.csproj b/AutoCompleteBox/AddNewItemsWithButton/AddNewItemsWithButton_WPF.csproj
deleted file mode 100644
index 6e3b92fda..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/AddNewItemsWithButton_WPF.csproj
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {052E1B45-DF3A-4D11-8F9F-54E828CFCB00}
- WinExe
- Properties
- AddNewItemsWithButton
- AddNewItemsWithButton
- v4.0
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
-
-
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.dll
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.Input.dll
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
- Example.xaml
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AddNewItemsWithButton/App.xaml b/AutoCompleteBox/AddNewItemsWithButton/App.xaml
deleted file mode 100644
index 82ded96a1..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/AddNewItemsWithButton/App.xaml.cs b/AutoCompleteBox/AddNewItemsWithButton/App.xaml.cs
deleted file mode 100644
index 336715876..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/App.xaml.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace AddNewItemsWithButton
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Country.cs b/AutoCompleteBox/AddNewItemsWithButton/Country.cs
deleted file mode 100644
index f0f9f747c..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Country.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-
-namespace AddNewItemsWithButton
-{
- public class Country
- {
- public string Name { get; set; }
-
- public string Capital { get; set; }
-
- public int Id { get; set; }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Example.xaml b/AutoCompleteBox/AddNewItemsWithButton/Example.xaml
deleted file mode 100644
index 0c87caffb..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Example.xaml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Example.xaml.cs b/AutoCompleteBox/AddNewItemsWithButton/Example.xaml.cs
deleted file mode 100644
index 75057362b..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Example.xaml.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Windows;
-using System.Windows.Controls;
-
-namespace AddNewItemsWithButton
-{
- public partial class Example : UserControl
- {
- public Example()
- {
- InitializeComponent();
- }
-
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- var inputText = this.AutoCompleteBox.SearchText;
- var itemsSource = this.AutoCompleteBox.ItemsSource as ObservableCollection;
- var newItem = new Country() { Name = this.AutoCompleteBox.SearchText };
- if (!itemsSource.Any(item => item.Name == newItem.Name))
- {
- itemsSource.Add(newItem);
- this.AutoCompleteBox.ItemsSource = itemsSource;
- this.AutoCompleteBox.SelectedItem = newItem;
- this.ResultTextBlock.Text = string.Format("Successfully added new item ({0}) to the ItemsSource collection.", newItem.Name);
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml b/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml
deleted file mode 100644
index f65fb3fc3..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
diff --git a/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml.cs b/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml.cs
deleted file mode 100644
index 1aa94069c..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/MainPage.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Windows.Controls;
-
-namespace AddNewItemsWithButton
-{
- public partial class MainPage : UserControl
- {
- public MainPage()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml b/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml
deleted file mode 100644
index 22a5a0231..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml.cs b/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml.cs
deleted file mode 100644
index d20db51db..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/MainWindow.xaml.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace AddNewItemsWithButton
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Properties/AppManifest.xml b/AutoCompleteBox/AddNewItemsWithButton/Properties/AppManifest.xml
deleted file mode 100644
index 6712a1178..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Properties/AppManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Properties/AssemblyInfo.cs b/AutoCompleteBox/AddNewItemsWithButton/Properties/AssemblyInfo.cs
deleted file mode 100644
index 23da74932..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// 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("AddNewItemsWithButton")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("AddNewItemsWithButton")]
-[assembly: AssemblyCopyright("Copyright © 2013")]
-[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)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("824adef3-64a8-4d84-a087-6891e18b3422")]
-
-// 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 Revision and Build Numbers
-// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.Designer.cs b/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.Designer.cs
deleted file mode 100644
index e5b1d6548..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18010
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace AddNewItemsWithButton.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AddNewItemsWithButton.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.resx b/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.resx
deleted file mode 100644
index af7dbebba..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Properties/Settings.Designer.cs b/AutoCompleteBox/AddNewItemsWithButton/Properties/Settings.Designer.cs
deleted file mode 100644
index c0ca3e3e7..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18010
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace AddNewItemsWithButton.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/Readme.md b/AutoCompleteBox/AddNewItemsWithButton/Readme.md
deleted file mode 100644
index bf578ee54..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/Readme.md
+++ /dev/null
@@ -1,4 +0,0 @@
-## Add New Items With Button
-This example demonstrates how to add new Items to the ItemsSource collection of the control with the use of a simple Button.
-
-[//]:
\ No newline at end of file
diff --git a/AutoCompleteBox/AddNewItemsWithButton/SearchTextToBoolConverter.cs b/AutoCompleteBox/AddNewItemsWithButton/SearchTextToBoolConverter.cs
deleted file mode 100644
index e17c37127..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/SearchTextToBoolConverter.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Windows.Data;
-
-namespace AddNewItemsWithButton
-{
- public class SearchTextToBoolConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- return !string.IsNullOrEmpty((string)value);
- }
-
- public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
-}
diff --git a/AutoCompleteBox/AddNewItemsWithButton/ViewModel.cs b/AutoCompleteBox/AddNewItemsWithButton/ViewModel.cs
deleted file mode 100644
index 1f4c6202e..000000000
--- a/AutoCompleteBox/AddNewItemsWithButton/ViewModel.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Collections.ObjectModel;
-
-namespace AddNewItemsWithButton
-{
- public class ViewModel
- {
- public ObservableCollection Countries { get; set; }
-
- public ViewModel()
- {
- this.Countries = new ObservableCollection()
- {
- new Country() { Name = "Australia", Capital = "Canberra", Id = 1 },
- new Country() { Name = "Bulgaria", Capital = "Sofia" , Id = 2 },
- new Country() { Name = "Canada", Capital = "Ottawa" , Id = 3 },
- new Country() { Name = "Denmark", Capital = "Copenhagen" , Id = 4 },
- new Country() { Name = "France", Capital = "Paris" , Id = 5 },
- new Country() { Name = "Germany", Capital = "Berlin" , Id = 6 },
- new Country() { Name = "India", Capital = "New Delhi" , Id = 7 },
- new Country() { Name = "Italy", Capital = "Rome" , Id = 8 },
- new Country() { Name = "Norway", Capital = "Oslo" , Id = 9 },
- new Country() { Name = "Russia", Capital = "Moscow" , Id = 10 },
- new Country() { Name = "Spain ", Capital = "Madrid" , Id = 11 },
- new Country() { Name = "United Kingdom", Capital = "London" , Id = 12 },
- new Country() { Name = "United States", Capital = "Washington, D.C." , Id = 13 },
- };
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/App.config b/AutoCompleteBox/AsynchronousFiltering/App.config
deleted file mode 100644
index 8e1564635..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AsynchronousFiltering/App.xaml b/AutoCompleteBox/AsynchronousFiltering/App.xaml
deleted file mode 100644
index cdd491fe6..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/AsynchronousFiltering/App.xaml.cs b/AutoCompleteBox/AsynchronousFiltering/App.xaml.cs
deleted file mode 100644
index 13ba1e406..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/App.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows;
-
-namespace AsynchronousFiltering
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/AsynchronousFiltering_WPF.csproj b/AutoCompleteBox/AsynchronousFiltering/AsynchronousFiltering_WPF.csproj
deleted file mode 100644
index c74c2f740..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/AsynchronousFiltering_WPF.csproj
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {885922CC-C114-4195-9D31-03AECD27408E}
- WinExe
- Properties
- AsynchronousFiltering
- AsynchronousFiltering
- v4.5
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
-
-
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.dll
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.Input.dll
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
- Example.xaml
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AsynchronousFiltering/Example.xaml b/AutoCompleteBox/AsynchronousFiltering/Example.xaml
deleted file mode 100644
index a7faa27cd..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Example.xaml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AutoCompleteBox/AsynchronousFiltering/Example.xaml.cs b/AutoCompleteBox/AsynchronousFiltering/Example.xaml.cs
deleted file mode 100644
index 635c8b7c4..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Example.xaml.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace TestApplication
-{
- ///
- /// Interaction logic for Example.xaml
- ///
- public partial class Example : UserControl
- {
- public Example()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml b/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml
deleted file mode 100644
index 076638f0e..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
diff --git a/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml.cs b/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml.cs
deleted file mode 100644
index ea9926677..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/MainPage.xaml.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Shapes;
-
-namespace AsynchronousFiltering
-{
- public partial class MainPage : UserControl
- {
- public MainPage()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml b/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml
deleted file mode 100644
index ed9ae914e..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml.cs b/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml.cs
deleted file mode 100644
index 8779b0401..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/MainWindow.xaml.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace AsynchronousFiltering
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/AppManifest.xml b/AutoCompleteBox/AsynchronousFiltering/Properties/AppManifest.xml
deleted file mode 100644
index 6712a1178..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/AppManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/AssemblyInfo.cs b/AutoCompleteBox/AsynchronousFiltering/Properties/AssemblyInfo.cs
deleted file mode 100644
index 8fcd35126..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// 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("AsynchronousFiltering")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("AsynchronousFiltering")]
-[assembly: AssemblyCopyright("Copyright © 2014")]
-[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)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("2964bde0-c699-4533-a88c-560ad77f6781")]
-
-// 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 Revision and Build Numbers
-// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.Designer.cs b/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.Designer.cs
deleted file mode 100644
index 69d70610d..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.34014
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace AsynchronousFiltering.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AsynchronousFiltering.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.resx b/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.resx
deleted file mode 100644
index af7dbebba..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.Designer.cs b/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.Designer.cs
deleted file mode 100644
index cfba40eee..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.34014
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace AsynchronousFiltering.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.settings b/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.settings
deleted file mode 100644
index 033d7a5e9..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/AsynchronousFiltering/Readme.md b/AutoCompleteBox/AsynchronousFiltering/Readme.md
deleted file mode 100644
index e4ff5af3d..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/Readme.md
+++ /dev/null
@@ -1,4 +0,0 @@
-## How to enable asynchronous Filtering
-This example demonstrates how to enable the RadAutoCompleteBox control's asynchronous FilteringBehavior. For demonstration the left RadAutoCompleteBox uses the normal FilteringBehavior and the right RadAutoCompleteBox uses the AsyncFilteringBehavior. Notice the delayed filtering of the asynchronous behavior. Both controls are bound to a collection of 100000 similar items. This behavior is designed to work with a big source set to the ItemsSource of the control.
-
-[//]:
\ No newline at end of file
diff --git a/AutoCompleteBox/AsynchronousFiltering/ViewModels/Item.cs b/AutoCompleteBox/AsynchronousFiltering/ViewModels/Item.cs
deleted file mode 100644
index 2a38c5928..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/ViewModels/Item.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace TestApplication.ViewModels
-{
- public class Item
- {
- public string Name { get; set; }
- }
-}
diff --git a/AutoCompleteBox/AsynchronousFiltering/ViewModels/MainViewModel.cs b/AutoCompleteBox/AsynchronousFiltering/ViewModels/MainViewModel.cs
deleted file mode 100644
index 73ec072ea..000000000
--- a/AutoCompleteBox/AsynchronousFiltering/ViewModels/MainViewModel.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Telerik.Windows.Controls;
-
-namespace TestApplication.ViewModels
-{
- public class MainViewModel : ViewModelBase
- {
- private ObservableCollection- items;
-
- public MainViewModel()
- {
- this.items = GetItems(100000);
- }
-
- private static ObservableCollection
- GetItems(int size)
- {
- var result = new ObservableCollection
- ();
-
- for (int i = 1; i <= size; i++)
- {
- result.Add(new Item() { Name = string.Format("Item {0}", i) });
- }
-
- return result;
- }
-
- ///
- /// Gets or sets Items and notifies for changes
- ///
- public ObservableCollection
- Items
- {
- get
- {
- return this.items;
- }
-
- set
- {
- if (this.items != value)
- {
- this.items = value;
- this.OnPropertyChanged(() => this.Items);
- }
- }
- }
- }
-}
diff --git a/AutoCompleteBox/AutoCompleteBox_WPF.sln b/AutoCompleteBox/AutoCompleteBox_WPF.sln
deleted file mode 100644
index d78664670..000000000
--- a/AutoCompleteBox/AutoCompleteBox_WPF.sln
+++ /dev/null
@@ -1,125 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2013
-VisualStudioVersion = 12.0.40629.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoMatchFilteringBehavior_WPF", "NoMatchFilteringBehavior\NoMatchFilteringBehavior_WPF.csproj", "{B7A1BFA7-9E77-4C68-872F-3334816071E0}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwoPropertiesFilteringBehavior_WPF", "TwoPropertiesFilteringBehavior\TwoPropertiesFilteringBehavior_WPF.csproj", "{474FFE7C-983F-487A-81A7-460CE0CA996F}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenWithDropDownButton_WPF", "OpenWithDropDownButton\OpenWithDropDownButton_WPF.csproj", "{7369C81A-F5C2-4407-A78C-5F8A10EBD400}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomDropDownItemTemplate_WPF", "CustomDropDownItemTemplate\CustomDropDownItemTemplate_WPF.csproj", "{E5EF8447-4813-423F-A7AB-5F08D14352F7}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WithGridView_WPF", "WithGridView\WithGridView_WPF.csproj", "{C67ED566-5207-4AF7-A803-043859442003}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WithDataForm_WPF", "WithDataForm\WithDataForm_WPF.csproj", "{4A831362-CDC5-45EC-8CA7-2566B75D2F12}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HighlightMatchingItemsText_WPF", "HighlightMatchingItemsText_WPF\HighlightMatchingItemsText_WPF.csproj", "{AEFA23DE-1248-463B-92A9-0B5936A8369D}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddNewItemsWithButton_WPF", "AddNewItemsWithButton\AddNewItemsWithButton_WPF.csproj", "{052E1B45-DF3A-4D11-8F9F-54E828CFCB00}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinimumPopulateDelay_WPF", "MinimumPopulateDelay\MinimumPopulateDelay_WPF.csproj", "{265C4222-5F79-4F4F-8428-1842FC0B487D}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomHighlightBehavior_WPF", "CustomHighlightBehavior\CustomHighlightBehavior_WPF.csproj", "{57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsynchronousFiltering_WPF", "AsynchronousFiltering\AsynchronousFiltering_WPF.csproj", "{885922CC-C114-4195-9D31-03AECD27408E}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DifferentlyColoredSelectedBoxes_WPF", "MultiColorBoxesItems\DifferentlyColoredSelectedBoxes_WPF.csproj", "{AE048560-E20D-4699-9646-FC89623A39D2}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SingleSelectionModeWithClearButton_WPF", "SingleSelectionModeWithClearButton\SingleSelectionModeWithClearButton_WPF.csproj", "{E238E4EB-B5BC-490C-A280-480DC9F7B54B}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomBoxesItemTemplate_WPF", "CustomBoxesItemTemplate\CustomBoxesItemTemplate_WPF.csproj", "{D075E541-4676-47D3-B723-5B30B4FCB030}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataValidation_WPF", "DataValidation\DataValidation_WPF.csproj", "{AC50D323-F9AA-4F0E-9AF4-6649707FB42F}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestrictInputToOnlyExistingItems_WPF", "RestrictInputToOnlyExistingItems\RestrictInputToOnlyExistingItems_WPF.csproj", "{C9977D98-B62B-4955-A93E-D6CD9222D603}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinimumInputPrefixLengthBeforeFiltering_WPF", "MinimumInputPrefixLengthBeforeFiltering\MinimumInputPrefixLengthBeforeFiltering_WPF.csproj", "{3EE7C771-C4C7-4B60-94FE-E7F501FF8D82}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grouping_WPF", "Grouping\Grouping_WPF.csproj", "{8957580A-927C-4C75-AC04-DDB3C4A9B7EA}"
-EndProject
-Global
-
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {B7A1BFA7-9E77-4C68-872F-3334816071E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B7A1BFA7-9E77-4C68-872F-3334816071E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B7A1BFA7-9E77-4C68-872F-3334816071E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B7A1BFA7-9E77-4C68-872F-3334816071E0}.Release|Any CPU.Build.0 = Release|Any CPU
- {474FFE7C-983F-487A-81A7-460CE0CA996F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {474FFE7C-983F-487A-81A7-460CE0CA996F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {474FFE7C-983F-487A-81A7-460CE0CA996F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {474FFE7C-983F-487A-81A7-460CE0CA996F}.Release|Any CPU.Build.0 = Release|Any CPU
- {7369C81A-F5C2-4407-A78C-5F8A10EBD400}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7369C81A-F5C2-4407-A78C-5F8A10EBD400}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7369C81A-F5C2-4407-A78C-5F8A10EBD400}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7369C81A-F5C2-4407-A78C-5F8A10EBD400}.Release|Any CPU.Build.0 = Release|Any CPU
- {E5EF8447-4813-423F-A7AB-5F08D14352F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E5EF8447-4813-423F-A7AB-5F08D14352F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E5EF8447-4813-423F-A7AB-5F08D14352F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E5EF8447-4813-423F-A7AB-5F08D14352F7}.Release|Any CPU.Build.0 = Release|Any CPU
- {C67ED566-5207-4AF7-A803-043859442003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C67ED566-5207-4AF7-A803-043859442003}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C67ED566-5207-4AF7-A803-043859442003}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C67ED566-5207-4AF7-A803-043859442003}.Release|Any CPU.Build.0 = Release|Any CPU
- {4A831362-CDC5-45EC-8CA7-2566B75D2F12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {4A831362-CDC5-45EC-8CA7-2566B75D2F12}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4A831362-CDC5-45EC-8CA7-2566B75D2F12}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {4A831362-CDC5-45EC-8CA7-2566B75D2F12}.Release|Any CPU.Build.0 = Release|Any CPU
- {AEFA23DE-1248-463B-92A9-0B5936A8369D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AEFA23DE-1248-463B-92A9-0B5936A8369D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AEFA23DE-1248-463B-92A9-0B5936A8369D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {AEFA23DE-1248-463B-92A9-0B5936A8369D}.Release|Any CPU.Build.0 = Release|Any CPU
- {052E1B45-DF3A-4D11-8F9F-54E828CFCB00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {052E1B45-DF3A-4D11-8F9F-54E828CFCB00}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {052E1B45-DF3A-4D11-8F9F-54E828CFCB00}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {052E1B45-DF3A-4D11-8F9F-54E828CFCB00}.Release|Any CPU.Build.0 = Release|Any CPU
- {265C4222-5F79-4F4F-8428-1842FC0B487D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {265C4222-5F79-4F4F-8428-1842FC0B487D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {265C4222-5F79-4F4F-8428-1842FC0B487D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {265C4222-5F79-4F4F-8428-1842FC0B487D}.Release|Any CPU.Build.0 = Release|Any CPU
- {57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}.Release|Any CPU.Build.0 = Release|Any CPU
- {885922CC-C114-4195-9D31-03AECD27408E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {885922CC-C114-4195-9D31-03AECD27408E}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {885922CC-C114-4195-9D31-03AECD27408E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {885922CC-C114-4195-9D31-03AECD27408E}.Release|Any CPU.Build.0 = Release|Any CPU
- {AE048560-E20D-4699-9646-FC89623A39D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AE048560-E20D-4699-9646-FC89623A39D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AE048560-E20D-4699-9646-FC89623A39D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {AE048560-E20D-4699-9646-FC89623A39D2}.Release|Any CPU.Build.0 = Release|Any CPU
- {E238E4EB-B5BC-490C-A280-480DC9F7B54B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E238E4EB-B5BC-490C-A280-480DC9F7B54B}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E238E4EB-B5BC-490C-A280-480DC9F7B54B}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E238E4EB-B5BC-490C-A280-480DC9F7B54B}.Release|Any CPU.Build.0 = Release|Any CPU
- {D075E541-4676-47D3-B723-5B30B4FCB030}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {D075E541-4676-47D3-B723-5B30B4FCB030}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {D075E541-4676-47D3-B723-5B30B4FCB030}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {D075E541-4676-47D3-B723-5B30B4FCB030}.Release|Any CPU.Build.0 = Release|Any CPU
- {AC50D323-F9AA-4F0E-9AF4-6649707FB42F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AC50D323-F9AA-4F0E-9AF4-6649707FB42F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AC50D323-F9AA-4F0E-9AF4-6649707FB42F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {AC50D323-F9AA-4F0E-9AF4-6649707FB42F}.Release|Any CPU.Build.0 = Release|Any CPU
- {C9977D98-B62B-4955-A93E-D6CD9222D603}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C9977D98-B62B-4955-A93E-D6CD9222D603}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C9977D98-B62B-4955-A93E-D6CD9222D603}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C9977D98-B62B-4955-A93E-D6CD9222D603}.Release|Any CPU.Build.0 = Release|Any CPU
- {3EE7C771-C4C7-4B60-94FE-E7F501FF8D82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {3EE7C771-C4C7-4B60-94FE-E7F501FF8D82}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {3EE7C771-C4C7-4B60-94FE-E7F501FF8D82}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {3EE7C771-C4C7-4B60-94FE-E7F501FF8D82}.Release|Any CPU.Build.0 = Release|Any CPU
- {8957580A-927C-4C75-AC04-DDB3C4A9B7EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {8957580A-927C-4C75-AC04-DDB3C4A9B7EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {8957580A-927C-4C75-AC04-DDB3C4A9B7EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {8957580A-927C-4C75-AC04-DDB3C4A9B7EA}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/App.config b/AutoCompleteBox/CustomBoxesItemTemplate/App.config
deleted file mode 100644
index 8e1564635..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml b/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml
deleted file mode 100644
index cb6e74ba0..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml.cs b/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml.cs
deleted file mode 100644
index 68be11c56..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.Windows;
-
-namespace CustomBoxesItemTemplate
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Continent.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Continent.cs
deleted file mode 100644
index 97161f08b..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Continent.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-
-namespace CustomBoxesItemTemplate
-{
- public enum Continent
- {
- Europe,
- Africa,
- Asia,
- NorthAmerica,
- SouthAmerica,
- Australia,
- Antarctica
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/ContinentToColorConverter.cs b/AutoCompleteBox/CustomBoxesItemTemplate/ContinentToColorConverter.cs
deleted file mode 100644
index da11f6947..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/ContinentToColorConverter.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using System;
-using System.Windows.Data;
-using System.Windows.Media;
-
-namespace CustomBoxesItemTemplate
-{
- public class ContinentToColorConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- var continent = (value as Country).Continent;
-
- switch (continent)
- {
- case Continent.Europe:
- return new SolidColorBrush(Colors.Blue);
- case Continent.Africa:
- return new SolidColorBrush(Colors.Magenta);
- case Continent.Asia:
- return new SolidColorBrush(Colors.Orange);
- case Continent.NorthAmerica:
- return new SolidColorBrush(Colors.Green);
- case Continent.SouthAmerica:
- return new SolidColorBrush(Colors.Red);
- case Continent.Australia:
- return new SolidColorBrush(Colors.Purple);
- case Continent.Antarctica:
- return new SolidColorBrush(Colors.Gray);
- default:
- break;
- }
-
- return Colors.White;
- }
-
- public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Country.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Country.cs
deleted file mode 100644
index a6b0a0a12..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Country.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-
-namespace CustomBoxesItemTemplate
-{
- public class Country
- {
- public string Name { get; set; }
-
- public string Capital { get; set; }
-
- public Continent Continent { get; set; }
-
- public string Flag { get; set; }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/CustomBoxesItemTemplate_WPF.csproj b/AutoCompleteBox/CustomBoxesItemTemplate/CustomBoxesItemTemplate_WPF.csproj
deleted file mode 100644
index 7d87da069..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/CustomBoxesItemTemplate_WPF.csproj
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {D075E541-4676-47D3-B723-5B30B4FCB030}
- WinExe
- Properties
- CustomBoxesItemTemplate
- CustomBoxesItemTemplate
- v4.0
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
-
-
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.dll
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.Input.dll
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
-
- Example.xaml
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml b/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml
deleted file mode 100644
index c81119724..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml.cs
deleted file mode 100644
index 4c2c72b9e..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Example.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomBoxesItemTemplate
-{
- ///
- /// Interaction logic for Example.xaml
- ///
- public partial class Example : UserControl
- {
- public Example()
- {
- InitializeComponent();
-
- this.DataContext = new ViewModel();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ar.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/ar.png
deleted file mode 100644
index e5ef8f1fc..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ar.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/au.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/au.png
deleted file mode 100644
index a01389a74..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/au.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/bg.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/bg.png
deleted file mode 100644
index 0469f0607..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/bg.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/br.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/br.png
deleted file mode 100644
index 827d7593e..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/br.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ca.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/ca.png
deleted file mode 100644
index 1f204193a..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ca.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/cn.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/cn.png
deleted file mode 100644
index 891441462..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/cn.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/de.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/de.png
deleted file mode 100644
index ac4a97736..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/de.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/dk.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/dk.png
deleted file mode 100644
index e2993d3c5..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/dk.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/eg.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/eg.png
deleted file mode 100644
index 8a3f7a10b..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/eg.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/fr.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/fr.png
deleted file mode 100644
index 3bd7e9b53..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/fr.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/in.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/in.png
deleted file mode 100644
index e4d7e81a9..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/in.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/it.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/it.png
deleted file mode 100644
index 89692f74f..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/it.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/jp.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/jp.png
deleted file mode 100644
index 325fbad3f..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/jp.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ng.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/ng.png
deleted file mode 100644
index 3eea2e020..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ng.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/no.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/no.png
deleted file mode 100644
index 160b6b5b7..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/no.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ru.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/ru.png
deleted file mode 100644
index 47da4214f..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/ru.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/sp.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/sp.png
deleted file mode 100644
index c70945d2d..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/sp.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/uk.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/uk.png
deleted file mode 100644
index 9fa461c94..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/uk.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Images/usa.png b/AutoCompleteBox/CustomBoxesItemTemplate/Images/usa.png
deleted file mode 100644
index f9ae9ed66..000000000
Binary files a/AutoCompleteBox/CustomBoxesItemTemplate/Images/usa.png and /dev/null differ
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml b/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml
deleted file mode 100644
index 6a926bd7c..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml.cs b/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml.cs
deleted file mode 100644
index 69eaa5ca3..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/MainPage.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomBoxesItemTemplate
-{
- public partial class MainPage : UserControl
- {
- public MainPage()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml b/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml
deleted file mode 100644
index e82403f97..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml.cs b/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml.cs
deleted file mode 100644
index 4c1e91860..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/MainWindow.xaml.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System.Windows;
-
-namespace CustomBoxesItemTemplate
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AppManifest.xml b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AppManifest.xml
deleted file mode 100644
index 6712a1178..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AppManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AssemblyInfo.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AssemblyInfo.cs
deleted file mode 100644
index d97a1e892..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// 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("CustomBoxesItemTemplate")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("CustomBoxesItemTemplate")]
-[assembly: AssemblyCopyright("Copyright © 2015")]
-[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)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("0d694e23-a1f0-4790-9c99-c2d418477619")]
-
-// 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 Revision and Build Numbers
-// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.Designer.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.Designer.cs
deleted file mode 100644
index 9dd1e8574..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.34209
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CustomBoxesItemTemplate.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CustomBoxesItemTemplate.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.resx b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.resx
deleted file mode 100644
index af7dbebba..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.Designer.cs b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.Designer.cs
deleted file mode 100644
index c8c2aa4c8..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.34209
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CustomBoxesItemTemplate.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.settings b/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.settings
deleted file mode 100644
index 033d7a5e9..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/Readme.md b/AutoCompleteBox/CustomBoxesItemTemplate/Readme.md
deleted file mode 100644
index 7dbacd704..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/Readme.md
+++ /dev/null
@@ -1,4 +0,0 @@
-## Custom BoxesItemTemplate
-This example demonstrates how to create a custom BoxesItemTemplate for RadAutoCompleteBox control in Silverlight and WPF.
-
-[//]:
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomBoxesItemTemplate/ViewModel.cs b/AutoCompleteBox/CustomBoxesItemTemplate/ViewModel.cs
deleted file mode 100644
index 64b4caecf..000000000
--- a/AutoCompleteBox/CustomBoxesItemTemplate/ViewModel.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Collections.ObjectModel;
-
-namespace CustomBoxesItemTemplate
-{
- public class ViewModel
- {
- public ObservableCollection Countries { get; set; }
-
- public ViewModel()
- {
- this.Countries = new ObservableCollection()
- {
- new Country() { Name = "Australia", Capital = "Canberra", Continent = Continent.Australia, Flag = "Images/au.png" },
- new Country() { Name = "Bulgaria", Capital = "Sofia", Continent = Continent.Europe, Flag = "Images/bg.png" },
- new Country() { Name = "Canada", Capital = "Ottawa", Continent = Continent.NorthAmerica, Flag = "Images/ca.png" },
- new Country() { Name = "Denmark", Capital = "Copenhagen", Continent = Continent.Europe, Flag = "Images/dk.png" },
- new Country() { Name = "France", Capital = "Paris", Continent = Continent.Europe, Flag = "Images/fr.png" },
- new Country() { Name = "Germany", Capital = "Berlin", Continent = Continent.Europe, Flag = "Images/de.png" },
- new Country() { Name = "India", Capital = "New Delhi", Continent = Continent.Asia, Flag = "Images/in.png" },
- new Country() { Name = "Italy", Capital = "Rome", Continent = Continent.Europe, Flag = "Images/it.png" },
- new Country() { Name = "Norway", Capital = "Oslo", Continent = Continent.Europe, Flag = "Images/no.png" },
- new Country() { Name = "Russia", Capital = "Moscow", Continent = Continent.Europe, Flag = "Images/ru.png" },
- new Country() { Name = "Spain ", Capital = "Madrid", Continent = Continent.Europe, Flag = "Images/sp.png" },
- new Country() { Name = "United Kingdom", Capital = "London", Continent = Continent.Europe, Flag = "Images/uk.png" },
- new Country() { Name = "United States", Capital = "Washington, D.C.", Continent = Continent.NorthAmerica, Flag = "Images/usa.png" },
- new Country() { Name = "Nigeria", Capital = "Abuja", Continent = Continent.Africa, Flag = "Images/ng.png" },
- new Country() { Name = "Egypt", Capital = "Cairo", Continent = Continent.Africa, Flag = "Images/eg.png" },
- new Country() { Name = "Brazil", Capital = "Brasilia", Continent = Continent.SouthAmerica, Flag = "Images/br.png" },
- new Country() { Name = "Argentina ", Capital = "Buenos Aires", Continent = Continent.SouthAmerica, Flag = "Images/ar.png" },
- new Country() { Name = "China", Capital = "Beijing", Continent = Continent.Asia, Flag = "Images/cn.png" },
- new Country() { Name = "Japan", Capital = "Tokyo", Continent = Continent.Asia, Flag = "Images/jp.png" },
- };
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml b/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml
deleted file mode 100644
index af5e47f82..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml.cs b/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml.cs
deleted file mode 100644
index f843c819b..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/App.xaml.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace CustomDropDownItemTemplate
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Country.cs b/AutoCompleteBox/CustomDropDownItemTemplate/Country.cs
deleted file mode 100644
index d42bf6762..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Country.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-
-namespace CustomDropDownItemTemplate
-{
- public class Country
- {
- public string Name { get; set; }
-
- public string Capital { get; set; }
-
- public int Id { get; set; }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/CustomDropDownItemTemplate_WPF.csproj b/AutoCompleteBox/CustomDropDownItemTemplate/CustomDropDownItemTemplate_WPF.csproj
deleted file mode 100644
index 6f73b7d45..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/CustomDropDownItemTemplate_WPF.csproj
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {E5EF8447-4813-423F-A7AB-5F08D14352F7}
- WinExe
- Properties
- CustomDropDownItemTemplate
- CustomDropDownItemTemplate
- v4.0
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
-
-
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.dll
-
-
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.Input.dll
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
- Example.xaml
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml b/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml
deleted file mode 100644
index ce948f04c..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml.cs b/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml.cs
deleted file mode 100644
index 8311b53b2..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Example.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomDropDownItemTemplate
-{
- public partial class Example : UserControl
- {
- public Example()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml b/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml
deleted file mode 100644
index 25aeca518..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml.cs b/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml.cs
deleted file mode 100644
index 99c25d63a..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/MainPage.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomDropDownItemTemplate
-{
- public partial class MainPage : UserControl
- {
- public MainPage()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml b/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml
deleted file mode 100644
index 3c0fb38f9..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml.cs b/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml.cs
deleted file mode 100644
index 0e7f9ddc5..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/MainWindow.xaml.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace CustomDropDownItemTemplate
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AppManifest.xml b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AppManifest.xml
deleted file mode 100644
index a95523275..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AppManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AssemblyInfo.cs b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AssemblyInfo.cs
deleted file mode 100644
index 74d268d75..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// 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("CustomDropDownItemTemplate")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("CustomDropDownItemTemplate")]
-[assembly: AssemblyCopyright("Copyright © 2013")]
-[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)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("bc6c83d9-4113-45b9-927b-895edaf4443d")]
-
-// 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 Revision and Build Numbers
-// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.Designer.cs b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.Designer.cs
deleted file mode 100644
index 7a5c44b37..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18010
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CustomDropDownItemTemplate.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CustomDropDownItemTemplate.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.resx b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.resx
deleted file mode 100644
index ffecec851..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.Designer.cs b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.Designer.cs
deleted file mode 100644
index e1923104e..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.18010
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace CustomDropDownItemTemplate.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.settings b/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.settings
deleted file mode 100644
index 8f2fd95d6..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/Readme.md b/AutoCompleteBox/CustomDropDownItemTemplate/Readme.md
deleted file mode 100644
index dd91ad8d8..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/Readme.md
+++ /dev/null
@@ -1,4 +0,0 @@
-## Custom Drop Down Item Template
-This example demonstrates how to create a custom DropDownItemTemplate for the RadAutoCompleteBox control in Silverlight and WPF.
-
-[//]:
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomDropDownItemTemplate/ViewModel.cs b/AutoCompleteBox/CustomDropDownItemTemplate/ViewModel.cs
deleted file mode 100644
index cb0f7fdab..000000000
--- a/AutoCompleteBox/CustomDropDownItemTemplate/ViewModel.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Collections.ObjectModel;
-
-namespace CustomDropDownItemTemplate
-{
- public class ViewModel
- {
- public ObservableCollection Countries { get; set; }
-
- public ViewModel()
- {
- this.Countries = new ObservableCollection()
- {
- new Country() { Name = "Australia", Capital = "Canberra", Id = 1 },
- new Country() { Name = "Bulgaria", Capital = "Sofia" , Id = 2 },
- new Country() { Name = "Canada", Capital = "Ottawa" , Id = 3 },
- new Country() { Name = "Denmark", Capital = "Copenhagen" , Id = 4 },
- new Country() { Name = "France", Capital = "Paris" , Id = 5 },
- new Country() { Name = "Germany", Capital = "Berlin" , Id = 6 },
- new Country() { Name = "India", Capital = "New Delhi" , Id = 7 },
- new Country() { Name = "Italy", Capital = "Rome" , Id = 8 },
- new Country() { Name = "Norway", Capital = "Oslo" , Id = 9 },
- new Country() { Name = "Russia", Capital = "Moscow" , Id = 10 },
- new Country() { Name = "Spain ", Capital = "Madrid" , Id = 11 },
- new Country() { Name = "United Kingdom", Capital = "London" , Id = 12 },
- new Country() { Name = "United States", Capital = "Washington, D.C." , Id = 13 },
- };
- }
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/App.config b/AutoCompleteBox/CustomHighlightBehavior/App.config
deleted file mode 100644
index 8e1564635..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomHighlightBehavior/App.xaml b/AutoCompleteBox/CustomHighlightBehavior/App.xaml
deleted file mode 100644
index 89a1e57f3..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomHighlightBehavior/App.xaml.cs b/AutoCompleteBox/CustomHighlightBehavior/App.xaml.cs
deleted file mode 100644
index 234ef4b40..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.Windows;
-
-namespace CustomHighlightBehavior
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/CustomHighlightBehavior_WPF.csproj b/AutoCompleteBox/CustomHighlightBehavior/CustomHighlightBehavior_WPF.csproj
deleted file mode 100644
index 0de6b01bd..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/CustomHighlightBehavior_WPF.csproj
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {57A5654E-E7C3-4596-8EBA-D8EDE3F4D2D2}
- WinExe
- Properties
- CustomHighlightBehavior
- CustomHighlightBehavior
- v4.5
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
-
-
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
- False
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.dll
-
-
- False
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Controls.Input.dll
-
-
- False
- $(TELERIKWPFDIR)\Binaries\WPF40\Telerik.Windows.Data.dll
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
- Example.xaml
-
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/AutoCompleteBox/CustomHighlightBehavior/Example.xaml b/AutoCompleteBox/CustomHighlightBehavior/Example.xaml
deleted file mode 100644
index e59fee253..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/Example.xaml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomHighlightBehavior/Example.xaml.cs b/AutoCompleteBox/CustomHighlightBehavior/Example.xaml.cs
deleted file mode 100644
index 5bb685482..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/Example.xaml.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomHighlightBehavior
-{
- ///
- /// Interaction logic for Example.xaml
- ///
- public partial class Example : UserControl
- {
- public Example()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/Item.cs b/AutoCompleteBox/CustomHighlightBehavior/Item.cs
deleted file mode 100644
index 0a4ae0f45..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/Item.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-
-namespace CustomHighlightBehavior
-{
- public class Item
- {
- public string Name { get; set; }
- public int Id { get; set; }
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml b/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml
deleted file mode 100644
index e939a244b..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml.cs b/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml.cs
deleted file mode 100644
index 0bc9066df..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/MainPage.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Windows.Controls;
-
-namespace CustomHighlightBehavior
-{
- public partial class MainPage : UserControl
- {
- public MainPage()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml b/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml
deleted file mode 100644
index 0f00cda59..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml.cs b/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml.cs
deleted file mode 100644
index 21311984e..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/MainWindow.xaml.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace CustomHighlightBehavior
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/AutoCompleteBox/CustomHighlightBehavior/MyHighlightBehavior.cs b/AutoCompleteBox/CustomHighlightBehavior/MyHighlightBehavior.cs
deleted file mode 100644
index 5846892e8..000000000
--- a/AutoCompleteBox/CustomHighlightBehavior/MyHighlightBehavior.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Collections.Generic;
-using System.Linq;
-using Telerik.Windows.Controls;
-
-namespace CustomHighlightBehavior
-{
- public class MyHighlightBehavior : HighlightBehavior
- {
- public override int FindHighlightedIndex(string searchText, System.Collections.IList filteredItems, IEnumerable