diff --git a/Sample Applications/WPFGallery/App.xaml.cs b/Sample Applications/WPFGallery/App.xaml.cs index a3c22490e..c49b6cefa 100644 --- a/Sample Applications/WPFGallery/App.xaml.cs +++ b/Sample Applications/WPFGallery/App.xaml.cs @@ -1,6 +1,5 @@ using System.Configuration; using System.Data; -using System.Windows; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; diff --git a/Sample Applications/WPFGallery/AssemblyInfo.cs b/Sample Applications/WPFGallery/AssemblyInfo.cs index cc29e7f74..ced831e99 100644 --- a/Sample Applications/WPFGallery/AssemblyInfo.cs +++ b/Sample Applications/WPFGallery/AssemblyInfo.cs @@ -1,4 +1,3 @@ -using System.Windows; [assembly:ThemeInfo( ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located diff --git a/Sample Applications/WPFGallery/Controls/ColorPageExample.xaml.cs b/Sample Applications/WPFGallery/Controls/ColorPageExample.xaml.cs index bb021828c..ccef3d4ff 100644 --- a/Sample Applications/WPFGallery/Controls/ColorPageExample.xaml.cs +++ b/Sample Applications/WPFGallery/Controls/ColorPageExample.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Controls/ColorTile.xaml.cs b/Sample Applications/WPFGallery/Controls/ColorTile.xaml.cs index 768911ccd..f434fd452 100644 --- a/Sample Applications/WPFGallery/Controls/ColorTile.xaml.cs +++ b/Sample Applications/WPFGallery/Controls/ColorTile.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Controls/ControlExample.xaml.cs b/Sample Applications/WPFGallery/Controls/ControlExample.xaml.cs index 456252c9a..85d8d9a1b 100644 --- a/Sample Applications/WPFGallery/Controls/ControlExample.xaml.cs +++ b/Sample Applications/WPFGallery/Controls/ControlExample.xaml.cs @@ -3,7 +3,7 @@ // Copyright (C) Leszek Pomianowski and WPF UI Contributors. // All Rights Reserved. -using System.Windows.Controls; +using System.IO; namespace WPFGallery.Controls; diff --git a/Sample Applications/WPFGallery/Helpers/ImageIdToBrushConverter.cs b/Sample Applications/WPFGallery/Helpers/ImageIdToBrushConverter.cs index 72499b1f6..d048c86cb 100644 --- a/Sample Applications/WPFGallery/Helpers/ImageIdToBrushConverter.cs +++ b/Sample Applications/WPFGallery/Helpers/ImageIdToBrushConverter.cs @@ -1,8 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using WPFGallery.Models; namespace WPFGallery.Helpers; diff --git a/Sample Applications/WPFGallery/MainWindow.xaml.cs b/Sample Applications/WPFGallery/MainWindow.xaml.cs index e9f037d63..18fe1c0f6 100644 --- a/Sample Applications/WPFGallery/MainWindow.xaml.cs +++ b/Sample Applications/WPFGallery/MainWindow.xaml.cs @@ -1,12 +1,5 @@ using Microsoft.Win32; -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; using System.Windows.Shell; diff --git a/Sample Applications/WPFGallery/Models/IconsData.cs b/Sample Applications/WPFGallery/Models/IconsData.cs index a535c022e..ebfda9dd1 100644 --- a/Sample Applications/WPFGallery/Models/IconsData.cs +++ b/Sample Applications/WPFGallery/Models/IconsData.cs @@ -1,10 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Text.Json; +using System.Text.Json; using System.Text.Json.Serialization; -using System.Threading.Tasks; namespace WPFGallery.Models { diff --git a/Sample Applications/WPFGallery/Models/User.cs b/Sample Applications/WPFGallery/Models/User.cs index 4f71beead..2809c0da6 100644 --- a/Sample Applications/WPFGallery/Models/User.cs +++ b/Sample Applications/WPFGallery/Models/User.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.ComponentModel; +using System.ComponentModel; namespace WPFGallery.Models { diff --git a/Sample Applications/WPFGallery/Navigation/NavigationCard.cs b/Sample Applications/WPFGallery/Navigation/NavigationCard.cs index c3a9657ea..5e6fd77fb 100644 --- a/Sample Applications/WPFGallery/Navigation/NavigationCard.cs +++ b/Sample Applications/WPFGallery/Navigation/NavigationCard.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; - + namespace WPFGallery.Navigation { /// diff --git a/Sample Applications/WPFGallery/Navigation/NavigationItem.cs b/Sample Applications/WPFGallery/Navigation/NavigationItem.cs index 8f17a90f9..0ee346076 100644 --- a/Sample Applications/WPFGallery/Navigation/NavigationItem.cs +++ b/Sample Applications/WPFGallery/Navigation/NavigationItem.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.Navigation { /// diff --git a/Sample Applications/WPFGallery/Navigation/NavigationService.cs b/Sample Applications/WPFGallery/Navigation/NavigationService.cs index b6507fca0..29c961f22 100644 --- a/Sample Applications/WPFGallery/Navigation/NavigationService.cs +++ b/Sample Applications/WPFGallery/Navigation/NavigationService.cs @@ -1,5 +1,4 @@ using System.Collections; -using System.Windows.Controls; using System.Windows.Navigation; namespace WPFGallery.Navigation; diff --git a/Sample Applications/WPFGallery/Usings.cs b/Sample Applications/WPFGallery/Usings.cs index e6a1d8cd5..078e799c1 100644 --- a/Sample Applications/WPFGallery/Usings.cs +++ b/Sample Applications/WPFGallery/Usings.cs @@ -3,18 +3,18 @@ global using System.Collections.ObjectModel; global using System.Diagnostics; global using System.Globalization; -global using System.IO; global using System.Linq; global using System.Reflection; global using System.Text; -global using System.Threading; -global using System.Threading.Tasks; global using System.Windows; global using System.Windows.Data; global using System.Windows.Input; global using System.Windows.Markup; global using System.Windows.Media; -global using System.Windows.Threading; + +global using System.Windows.Controls; +global using System.Windows.Media.Imaging; + global using CommunityToolkit.Mvvm.ComponentModel; global using CommunityToolkit.Mvvm.Input; // global using Microsoft.Extensions.Configuration; diff --git a/Sample Applications/WPFGallery/ViewModels/AboutPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/AboutPageViewModel.cs index 90acd5df7..750fb4a48 100644 --- a/Sample Applications/WPFGallery/ViewModels/AboutPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/AboutPageViewModel.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Media.Imaging; -using WPFGallery.Navigation; +using WPFGallery.Navigation; using WPFGallery.Views; namespace WPFGallery.ViewModels diff --git a/Sample Applications/WPFGallery/ViewModels/AllSamplesPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/AllSamplesPageViewModel.cs index b6913f28b..f89ab46e4 100644 --- a/Sample Applications/WPFGallery/ViewModels/AllSamplesPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/AllSamplesPageViewModel.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Media.Imaging; -using WPFGallery.Navigation; -using System.Windows.Controls; +using WPFGallery.Navigation; using WPFGallery.Views; namespace WPFGallery.ViewModels diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInput/ButtonPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInput/ButtonPageViewModel.cs index bbbf7b9b6..2ac2f866a 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInput/ButtonPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInput/ButtonPageViewModel.cs @@ -1,5 +1,4 @@ -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInput/CheckBoxPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInput/CheckBoxPageViewModel.cs index 1cf4e5e68..1ed15a093 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInput/CheckBoxPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInput/CheckBoxPageViewModel.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; - + namespace WPFGallery.ViewModels; public partial class CheckBoxPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInput/ComboBoxPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInput/ComboBoxPageViewModel.cs index 378b7b1de..8b613e74b 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInput/ComboBoxPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInput/ComboBoxPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInput/RadioButtonPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInput/RadioButtonPageViewModel.cs index a379e7c79..913bf2517 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInput/RadioButtonPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInput/RadioButtonPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInput/SliderPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInput/SliderPageViewModel.cs index d9f6dc4bd..4b307e829 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInput/SliderPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInput/SliderPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/BasicInputPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/BasicInputPageViewModel.cs index 7eb000020..b8d5fa5aa 100644 --- a/Sample Applications/WPFGallery/ViewModels/BasicInputPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/BasicInputPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/Collections/DataGridPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Collections/DataGridPageViewModel.cs index e53f28668..9b55710b6 100644 --- a/Sample Applications/WPFGallery/ViewModels/Collections/DataGridPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Collections/DataGridPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; using WPFGallery.Models; diff --git a/Sample Applications/WPFGallery/ViewModels/Collections/ListBoxPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Collections/ListBoxPageViewModel.cs index 18e7ff3bd..cff844d53 100644 --- a/Sample Applications/WPFGallery/ViewModels/Collections/ListBoxPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Collections/ListBoxPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/Collections/ListViewPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Collections/ListViewPageViewModel.cs index 95f6d9553..1e4de5b59 100644 --- a/Sample Applications/WPFGallery/ViewModels/Collections/ListViewPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Collections/ListViewPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; using WPFGallery.Models; diff --git a/Sample Applications/WPFGallery/ViewModels/Collections/TreeViewPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Collections/TreeViewPageViewModel.cs index 6e16fa8da..577292b7a 100644 --- a/Sample Applications/WPFGallery/ViewModels/Collections/TreeViewPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Collections/TreeViewPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/CollectionsPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/CollectionsPageViewModel.cs index 276130364..ff57d51c6 100644 --- a/Sample Applications/WPFGallery/ViewModels/CollectionsPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/CollectionsPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/DashboardPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DashboardPageViewModel.cs index aa27bb325..9a38692e6 100644 --- a/Sample Applications/WPFGallery/ViewModels/DashboardPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DashboardPageViewModel.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; -using WPFGallery.Navigation; +using WPFGallery.Navigation; using WPFGallery.Views; namespace WPFGallery.ViewModels diff --git a/Sample Applications/WPFGallery/ViewModels/DateAndTime/CalendarPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DateAndTime/CalendarPageViewModel.cs index 34b19e454..8f2b1f114 100644 --- a/Sample Applications/WPFGallery/ViewModels/DateAndTime/CalendarPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DateAndTime/CalendarPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/DateAndTime/DatePickerPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DateAndTime/DatePickerPageViewModel.cs index eb5bf3ce6..90073e5e5 100644 --- a/Sample Applications/WPFGallery/ViewModels/DateAndTime/DatePickerPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DateAndTime/DatePickerPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/DateAndTimePageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DateAndTimePageViewModel.cs index dae9409e1..b1230ef36 100644 --- a/Sample Applications/WPFGallery/ViewModels/DateAndTimePageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DateAndTimePageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/DesignGuidance/ColorsPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DesignGuidance/ColorsPageViewModel.cs index 7cb7953a5..3b32f549c 100644 --- a/Sample Applications/WPFGallery/ViewModels/DesignGuidance/ColorsPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DesignGuidance/ColorsPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using WPFGallery.Navigation; +using WPFGallery.Navigation; namespace WPFGallery.ViewModels { diff --git a/Sample Applications/WPFGallery/ViewModels/DesignGuidancePageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/DesignGuidancePageViewModel.cs index 81894249e..781902cb5 100644 --- a/Sample Applications/WPFGallery/ViewModels/DesignGuidancePageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/DesignGuidancePageViewModel.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; -using WPFGallery.Navigation; +using WPFGallery.Navigation; using WPFGallery.Views; namespace WPFGallery.ViewModels diff --git a/Sample Applications/WPFGallery/ViewModels/IconsPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/IconsPageViewModel.cs index 97c26ba64..4f0a51c37 100644 --- a/Sample Applications/WPFGallery/ViewModels/IconsPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/IconsPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Text.Json; -using System.Threading.Tasks; +using System.Text.Json; using WPFGallery.Models; using WPFGallery.Navigation; using System.IO; diff --git a/Sample Applications/WPFGallery/ViewModels/Layout/ExpanderPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Layout/ExpanderPageViewModel.cs index 6471760cc..bd94d6c86 100644 --- a/Sample Applications/WPFGallery/ViewModels/Layout/ExpanderPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Layout/ExpanderPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/LayoutPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/LayoutPageViewModel.cs index 8262b1b77..109955c1f 100644 --- a/Sample Applications/WPFGallery/ViewModels/LayoutPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/LayoutPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/MainWindowViewModel.cs b/Sample Applications/WPFGallery/ViewModels/MainWindowViewModel.cs index a1b8c7741..2e4579a58 100644 --- a/Sample Applications/WPFGallery/ViewModels/MainWindowViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/MainWindowViewModel.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -using System.Windows.Controls; using System.Windows.Controls.Primitives; +using System.Windows.Threading; using WPFGallery.Navigation; using WPFGallery.Views; using WPFGallery.Views.Samples; diff --git a/Sample Applications/WPFGallery/ViewModels/Media/CanvasPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Media/CanvasPageViewModel.cs index 241983ef3..e4b092e6d 100644 --- a/Sample Applications/WPFGallery/ViewModels/Media/CanvasPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Media/CanvasPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/Media/ImagePageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Media/ImagePageViewModel.cs index 973cf3f00..d9ce609fa 100644 --- a/Sample Applications/WPFGallery/ViewModels/Media/ImagePageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Media/ImagePageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/MediaPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/MediaPageViewModel.cs index b1cbd8984..77f0ffcf7 100644 --- a/Sample Applications/WPFGallery/ViewModels/MediaPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/MediaPageViewModel.cs @@ -1,9 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/NavigationPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/NavigationPageViewModel.cs index debefade8..c47ac963e 100644 --- a/Sample Applications/WPFGallery/ViewModels/NavigationPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/NavigationPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/Samples/UserDashboardPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Samples/UserDashboardPageViewModel.cs index 0761d8c94..cd0e3870a 100644 --- a/Sample Applications/WPFGallery/ViewModels/Samples/UserDashboardPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Samples/UserDashboardPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using WPFGallery.Models; +using WPFGallery.Models; namespace WPFGallery.ViewModels.Samples { diff --git a/Sample Applications/WPFGallery/ViewModels/SamplesPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/SamplesPageViewModel.cs index 1550ba3d3..ec27b3c97 100644 --- a/Sample Applications/WPFGallery/ViewModels/SamplesPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/SamplesPageViewModel.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; -using WPFGallery.Navigation; +using WPFGallery.Navigation; using WPFGallery.Views.Samples; namespace WPFGallery.ViewModels diff --git a/Sample Applications/WPFGallery/ViewModels/SettingsPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/SettingsPageViewModel.cs index 048274bf5..e34481bf8 100644 --- a/Sample Applications/WPFGallery/ViewModels/SettingsPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/SettingsPageViewModel.cs @@ -1,5 +1,4 @@ -using System.Windows.Controls; namespace WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/ViewModels/StatusAndInfoPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/StatusAndInfoPageViewModel.cs index 4b5a48874..0bf0a2f56 100644 --- a/Sample Applications/WPFGallery/ViewModels/StatusAndInfoPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/StatusAndInfoPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/Text/LabelPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Text/LabelPageViewModel.cs index 8ef694632..a09df7ea2 100644 --- a/Sample Applications/WPFGallery/ViewModels/Text/LabelPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Text/LabelPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels { public partial class LabelPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/Text/PasswordBoxPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Text/PasswordBoxPageViewModel.cs index a86eeb747..afcd998ce 100644 --- a/Sample Applications/WPFGallery/ViewModels/Text/PasswordBoxPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Text/PasswordBoxPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels { public partial class PasswordBoxPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/Text/RichTextEditPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Text/RichTextEditPageViewModel.cs index 50354a794..3c4e8d934 100644 --- a/Sample Applications/WPFGallery/ViewModels/Text/RichTextEditPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Text/RichTextEditPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels { public partial class RichTextEditPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/Text/TextBlockPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Text/TextBlockPageViewModel.cs index 6c5ed1ac4..7437c9838 100644 --- a/Sample Applications/WPFGallery/ViewModels/Text/TextBlockPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Text/TextBlockPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels { public partial class TextBlockPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/Text/TextBoxPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/Text/TextBoxPageViewModel.cs index 14227429d..ecf8d7915 100644 --- a/Sample Applications/WPFGallery/ViewModels/Text/TextBoxPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/Text/TextBoxPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - + namespace WPFGallery.ViewModels { public partial class TextBoxPageViewModel : ObservableObject diff --git a/Sample Applications/WPFGallery/ViewModels/TextPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/TextPageViewModel.cs index 3e86a1c8c..eba7d3d41 100644 --- a/Sample Applications/WPFGallery/ViewModels/TextPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/TextPageViewModel.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media.Imaging; using WPFGallery.Navigation; using WPFGallery.Views; diff --git a/Sample Applications/WPFGallery/ViewModels/TypographyPageViewModel.cs b/Sample Applications/WPFGallery/ViewModels/TypographyPageViewModel.cs index ddde24eaf..f3c98b0b8 100644 --- a/Sample Applications/WPFGallery/ViewModels/TypographyPageViewModel.cs +++ b/Sample Applications/WPFGallery/ViewModels/TypographyPageViewModel.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using WPFGallery.Navigation; +using WPFGallery.Navigation; namespace WPFGallery.ViewModels { diff --git a/Sample Applications/WPFGallery/Views/AboutPage.xaml.cs b/Sample Applications/WPFGallery/Views/AboutPage.xaml.cs index af9fc0949..f41f76b8e 100644 --- a/Sample Applications/WPFGallery/Views/AboutPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/AboutPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/AllSamplesPage.xaml.cs b/Sample Applications/WPFGallery/Views/AllSamplesPage.xaml.cs index 4bf621f04..3c555aaac 100644 --- a/Sample Applications/WPFGallery/Views/AllSamplesPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/AllSamplesPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/BasicInput/ButtonPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInput/ButtonPage.xaml.cs index 696cfaf31..2117deb8f 100644 --- a/Sample Applications/WPFGallery/Views/BasicInput/ButtonPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInput/ButtonPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/BasicInput/CheckBoxPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInput/CheckBoxPage.xaml.cs index 67884eeec..5c4e630e6 100644 --- a/Sample Applications/WPFGallery/Views/BasicInput/CheckBoxPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInput/CheckBoxPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/BasicInput/ComboBoxPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInput/ComboBoxPage.xaml.cs index 3a5a047e4..d8aba3749 100644 --- a/Sample Applications/WPFGallery/Views/BasicInput/ComboBoxPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInput/ComboBoxPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/BasicInput/RadioButtonPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInput/RadioButtonPage.xaml.cs index 555d4c359..5120a7535 100644 --- a/Sample Applications/WPFGallery/Views/BasicInput/RadioButtonPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInput/RadioButtonPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/BasicInput/SliderPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInput/SliderPage.xaml.cs index ada786233..592845296 100644 --- a/Sample Applications/WPFGallery/Views/BasicInput/SliderPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInput/SliderPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/BasicInputPage.xaml.cs b/Sample Applications/WPFGallery/Views/BasicInputPage.xaml.cs index 5cff37c6a..a14446480 100644 --- a/Sample Applications/WPFGallery/Views/BasicInputPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/BasicInputPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Collections/DataGridPage.xaml.cs b/Sample Applications/WPFGallery/Views/Collections/DataGridPage.xaml.cs index e9e206607..7915a677d 100644 --- a/Sample Applications/WPFGallery/Views/Collections/DataGridPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Collections/DataGridPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Collections/ListBoxPage.xaml.cs b/Sample Applications/WPFGallery/Views/Collections/ListBoxPage.xaml.cs index 9810d7731..b2d733172 100644 --- a/Sample Applications/WPFGallery/Views/Collections/ListBoxPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Collections/ListBoxPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml.cs b/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml.cs index faef7b2f1..112908ac4 100644 --- a/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Collections/ListViewPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Collections/TreeViewPage.xaml.cs b/Sample Applications/WPFGallery/Views/Collections/TreeViewPage.xaml.cs index e81adc266..6fe522aee 100644 --- a/Sample Applications/WPFGallery/Views/Collections/TreeViewPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Collections/TreeViewPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/CollectionsPage.xaml.cs b/Sample Applications/WPFGallery/Views/CollectionsPage.xaml.cs index c2089b3f3..b8c299903 100644 --- a/Sample Applications/WPFGallery/Views/CollectionsPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/CollectionsPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/DashboardPage.xaml.cs b/Sample Applications/WPFGallery/Views/DashboardPage.xaml.cs index 80bd46372..19c72c609 100644 --- a/Sample Applications/WPFGallery/Views/DashboardPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DashboardPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/DateAndTime/CalendarPage.xaml.cs b/Sample Applications/WPFGallery/Views/DateAndTime/CalendarPage.xaml.cs index 7d3b70949..5521eccfc 100644 --- a/Sample Applications/WPFGallery/Views/DateAndTime/CalendarPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DateAndTime/CalendarPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DateAndTime/DatePickerPage.xaml.cs b/Sample Applications/WPFGallery/Views/DateAndTime/DatePickerPage.xaml.cs index ef4d0cc99..00621d0ee 100644 --- a/Sample Applications/WPFGallery/Views/DateAndTime/DatePickerPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DateAndTime/DatePickerPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DateAndTimePage.xaml.cs b/Sample Applications/WPFGallery/Views/DateAndTimePage.xaml.cs index 0d2eb791a..59df4e599 100644 --- a/Sample Applications/WPFGallery/Views/DateAndTimePage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DateAndTimePage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/BackgroundSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/BackgroundSection.xaml.cs index afe46995e..4afb44705 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/BackgroundSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/BackgroundSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/ColorsPage.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/ColorsPage.xaml.cs index f4459f9f7..eaa2cff32 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/ColorsPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/ColorsPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/FillSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/FillSection.xaml.cs index 26ed87380..e99d3b80e 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/FillSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/FillSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/HighContrastSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/HighContrastSection.xaml.cs index 45258377c..d952eb6b2 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/HighContrastSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/HighContrastSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/IconsPage.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/IconsPage.xaml.cs index e1a5bad7e..ad34961a5 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/IconsPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/IconsPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.Controls; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/SignalSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/SignalSection.xaml.cs index 610543662..783d2d66c 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/SignalSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/SignalSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/StrokeSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/StrokeSection.xaml.cs index 8b758fffb..98bb5b83e 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/StrokeSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/StrokeSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/TextSection.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/TextSection.xaml.cs index 4185eb50d..3a9e2ae44 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/TextSection.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/TextSection.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidance/TypographyPage.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidance/TypographyPage.xaml.cs index 52f671228..be360eb2a 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidance/TypographyPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidance/TypographyPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/DesignGuidancePage.xaml.cs b/Sample Applications/WPFGallery/Views/DesignGuidancePage.xaml.cs index f028dc103..19eb307d6 100644 --- a/Sample Applications/WPFGallery/Views/DesignGuidancePage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/DesignGuidancePage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/Layout/ExpanderPage.xaml.cs b/Sample Applications/WPFGallery/Views/Layout/ExpanderPage.xaml.cs index 9e27b6721..997b03767 100644 --- a/Sample Applications/WPFGallery/Views/Layout/ExpanderPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Layout/ExpanderPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/LayoutPage.xaml.cs b/Sample Applications/WPFGallery/Views/LayoutPage.xaml.cs index 4145a5760..54fdcffec 100644 --- a/Sample Applications/WPFGallery/Views/LayoutPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/LayoutPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/Media/CanvasPage.xaml.cs b/Sample Applications/WPFGallery/Views/Media/CanvasPage.xaml.cs index 899d0731e..8f86a3af2 100644 --- a/Sample Applications/WPFGallery/Views/Media/CanvasPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Media/CanvasPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Media/ImagePage.xaml.cs b/Sample Applications/WPFGallery/Views/Media/ImagePage.xaml.cs index 847e50a76..15c61be1a 100644 --- a/Sample Applications/WPFGallery/Views/Media/ImagePage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Media/ImagePage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/MediaPage.xaml.cs b/Sample Applications/WPFGallery/Views/MediaPage.xaml.cs index 34c157154..c0cddffe4 100644 --- a/Sample Applications/WPFGallery/Views/MediaPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/MediaPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/Navigation/MenuPage.xaml.cs b/Sample Applications/WPFGallery/Views/Navigation/MenuPage.xaml.cs index 86b5fee83..920f687b0 100644 --- a/Sample Applications/WPFGallery/Views/Navigation/MenuPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Navigation/MenuPage.xaml.cs @@ -1,5 +1,4 @@ -using System.Windows.Controls; - + using WPFGallery.ViewModels; namespace WPFGallery.Views diff --git a/Sample Applications/WPFGallery/Views/Navigation/TabControlPage.xaml.cs b/Sample Applications/WPFGallery/Views/Navigation/TabControlPage.xaml.cs index 4109e850d..6b9a0625a 100644 --- a/Sample Applications/WPFGallery/Views/Navigation/TabControlPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Navigation/TabControlPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/NavigationPage.xaml.cs b/Sample Applications/WPFGallery/Views/NavigationPage.xaml.cs index 4ff7ac18e..efd87df5d 100644 --- a/Sample Applications/WPFGallery/Views/NavigationPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/NavigationPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/Samples/UserDashboardPage.xaml.cs b/Sample Applications/WPFGallery/Views/Samples/UserDashboardPage.xaml.cs index 476f5da15..375a06e96 100644 --- a/Sample Applications/WPFGallery/Views/Samples/UserDashboardPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Samples/UserDashboardPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels.Samples; diff --git a/Sample Applications/WPFGallery/Views/SamplesPage.xaml.cs b/Sample Applications/WPFGallery/Views/SamplesPage.xaml.cs index 21a852d04..fbdb5c33b 100644 --- a/Sample Applications/WPFGallery/Views/SamplesPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/SamplesPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/SettingsPage.xaml.cs b/Sample Applications/WPFGallery/Views/SettingsPage.xaml.cs index 72de558e5..edb4612e0 100644 --- a/Sample Applications/WPFGallery/Views/SettingsPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/SettingsPage.xaml.cs @@ -1,15 +1,4 @@ -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; diff --git a/Sample Applications/WPFGallery/Views/StatusAndInfo/ProgressBarPage.xaml.cs b/Sample Applications/WPFGallery/Views/StatusAndInfo/ProgressBarPage.xaml.cs index 98276fc7e..001ba0c8c 100644 --- a/Sample Applications/WPFGallery/Views/StatusAndInfo/ProgressBarPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/StatusAndInfo/ProgressBarPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/StatusAndInfo/ToolTipPage.xaml.cs b/Sample Applications/WPFGallery/Views/StatusAndInfo/ToolTipPage.xaml.cs index 3511d9bd0..5882d4b9c 100644 --- a/Sample Applications/WPFGallery/Views/StatusAndInfo/ToolTipPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/StatusAndInfo/ToolTipPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/StatusAndInfoPage.xaml.cs b/Sample Applications/WPFGallery/Views/StatusAndInfoPage.xaml.cs index b46c301c8..370732cdd 100644 --- a/Sample Applications/WPFGallery/Views/StatusAndInfoPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/StatusAndInfoPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels; diff --git a/Sample Applications/WPFGallery/Views/Text/LabelPage.xaml.cs b/Sample Applications/WPFGallery/Views/Text/LabelPage.xaml.cs index b1a24e782..781673378 100644 --- a/Sample Applications/WPFGallery/Views/Text/LabelPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Text/LabelPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Text/PasswordBoxPage.xaml.cs b/Sample Applications/WPFGallery/Views/Text/PasswordBoxPage.xaml.cs index 416d31d9a..3c4e765c9 100644 --- a/Sample Applications/WPFGallery/Views/Text/PasswordBoxPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Text/PasswordBoxPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Text/RichTextEditPage.xaml.cs b/Sample Applications/WPFGallery/Views/Text/RichTextEditPage.xaml.cs index 3431078f7..a1a4dcd32 100644 --- a/Sample Applications/WPFGallery/Views/Text/RichTextEditPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Text/RichTextEditPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Text/TextBlockPage.xaml.cs b/Sample Applications/WPFGallery/Views/Text/TextBlockPage.xaml.cs index 08ab8aa4a..011554d2e 100644 --- a/Sample Applications/WPFGallery/Views/Text/TextBlockPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Text/TextBlockPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/Text/TextBoxPage.xaml.cs b/Sample Applications/WPFGallery/Views/Text/TextBoxPage.xaml.cs index 57e38d72c..ea7515b92 100644 --- a/Sample Applications/WPFGallery/Views/Text/TextBoxPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/Text/TextBoxPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; diff --git a/Sample Applications/WPFGallery/Views/TextPage.xaml.cs b/Sample Applications/WPFGallery/Views/TextPage.xaml.cs index 690f481c1..969df9830 100644 --- a/Sample Applications/WPFGallery/Views/TextPage.xaml.cs +++ b/Sample Applications/WPFGallery/Views/TextPage.xaml.cs @@ -1,15 +1,4 @@ -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.Documents; using System.Windows.Navigation; using System.Windows.Shapes; using WPFGallery.ViewModels;