diff --git a/Changelog.md b/Changelog.md
index 6c3af205b..6bfe55de8 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,11 @@
# Changelog for Fluent.Ribbon
+## 5.0.0 (preview)
+
+- ### Breaking changes
+ - Office 2010 and Windows 8 themes got removed. This was a [community voted decision](../../issues/282).
+ - [#301](../../issues/301) - Remove Office 2010 and Windows 8 themes
+
## 4.0.3
- ### Bug fixes
diff --git a/Fluent.Ribbon.Showcase/App.xaml b/Fluent.Ribbon.Showcase/App.xaml
index 41983399c..007ec1097 100644
--- a/Fluent.Ribbon.Showcase/App.xaml
+++ b/Fluent.Ribbon.Showcase/App.xaml
@@ -6,9 +6,7 @@
-
-
diff --git a/Fluent.Ribbon.Showcase/TestContent.xaml b/Fluent.Ribbon.Showcase/TestContent.xaml
index 5f2875895..09729d52c 100644
--- a/Fluent.Ribbon.Showcase/TestContent.xaml
+++ b/Fluent.Ribbon.Showcase/TestContent.xaml
@@ -155,47 +155,6 @@
-
-
-
-
- Office 2010 Silver
- Office 2010 Black
- Office 2010 Blue
- Office 2013 White
- Windows8 White
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
123
-
- Silver
- Black
- Blue
- Don't use DWM
-
-
-
- White
-
-
-
- White
-
-
+ Icon="pack://application:,,,/Fluent;component/Themes/Office2013/Images/Warning.png" />
+ Icon="pack://application:,,,/Fluent;component/Themes/Office2013/Images/Warning.png" />
@@ -2640,9 +2557,7 @@
Fluent.Ribbon is a library that implements an Office-like user interface for the Windows Presentation Foundation (WPF).
- It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on.
-
- It is bundled with Office 2010, Office 2013 and Windows 8 themes.
+ It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on.
diff --git a/Fluent.Ribbon.Showcase/TestContent.xaml.cs b/Fluent.Ribbon.Showcase/TestContent.xaml.cs
index c0c4867d2..eef90c613 100644
--- a/Fluent.Ribbon.Showcase/TestContent.xaml.cs
+++ b/Fluent.Ribbon.Showcase/TestContent.xaml.cs
@@ -105,32 +105,6 @@ private enum Theme
Windows8
}
- private void OnOffice2013Click(object sender, RoutedEventArgs e)
- {
- this.ChangeTheme(Theme.Office2013, "pack://application:,,,/Fluent;component/Themes/Office2013/Generic.xaml");
- }
-
- private void OnOffice2010SilverClick(object sender, RoutedEventArgs e)
- {
- this.ChangeTheme(Theme.Office2010, "pack://application:,,,/Fluent;component/Themes/Office2010/Silver.xaml");
- }
-
- private void OnOffice2010BlackClick(object sender, RoutedEventArgs e)
- {
- this.ChangeTheme(Theme.Office2010, "pack://application:,,,/Fluent;component/Themes/Office2010/Black.xaml");
- }
-
- private void OnOffice2010BlueClick(object sender, RoutedEventArgs e)
- {
- this.ChangeTheme(Theme.Office2010, "pack://application:,,,/Fluent;component/Themes/Office2010/Blue.xaml");
- }
-
- private void OnWindows8Click(object sender, RoutedEventArgs e)
- {
- this.ChangeTheme(Theme.Windows8, "pack://application:,,,/Fluent;component/Themes/Windows8/Silver.xaml");
- }
-
-
private void ChangeTheme(Theme theme, string color)
{
this.Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle, (ThreadStart)(() =>
@@ -189,25 +163,6 @@ private void ChangeTheme(Theme theme, string color)
}));
}
- private void HandleDontUseDwmClick(object sender, RoutedEventArgs e)
- {
- var control = sender as UIElement;
-
- if (control == null)
- {
- return;
- }
-
- var window = Window.GetWindow(control) as RibbonWindow;
-
- if (window == null)
- {
- return;
- }
-
- window.DontUseDwm = this.DontUseDwm.IsChecked.GetValueOrDefault();
- }
-
#endregion Theming
#region Logical tree
diff --git a/Fluent.Ribbon.Showcase/app.manifest b/Fluent.Ribbon.Showcase/app.manifest
index f4c957041..d0dc3a229 100644
--- a/Fluent.Ribbon.Showcase/app.manifest
+++ b/Fluent.Ribbon.Showcase/app.manifest
@@ -5,49 +5,49 @@
xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Fluent.Ribbon.nuspec b/Fluent.Ribbon.nuspec
index b02067f19..b8fde98ac 100644
--- a/Fluent.Ribbon.nuspec
+++ b/Fluent.Ribbon.nuspec
@@ -5,14 +5,14 @@
$Version$
Fluent.Ribbon
Fluent.Ribbon is a library that implements an Office-like Ribbon for WPF.
- Fluent.Ribbon is a library that implements an Office-like user interface for the Windows Presentation Foundation (WPF). It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on. It is bundled with Office 2010, Office 2013 and Windows 8 themes.
+ Fluent.Ribbon is a library that implements an Office-like user interface for the Windows Presentation Foundation (WPF). It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on.
You can read the changelog at: https://github.com/fluentribbon/Fluent.Ribbon/blob/master/Changelog.md
batzen
https://github.com/fluentribbon/Fluent.Ribbon/blob/master/License.txt
https://github.com/fluentribbon/Fluent.Ribbon
https://raw.githubusercontent.com/fluentribbon/Fluent.Ribbon/master/Images/Logo/Logo_32x32.png
false
- ribbon fluent ribbon ribbonwindow office2010 office2013 windows8 backstage
+ fluent office ribbon ribbonwindow backstage
diff --git a/Fluent.Ribbon/Effects/GrayscaleEffect.cs b/Fluent.Ribbon/Effects/GrayscaleEffect.cs
index 0b6d321b9..c7c5b5d4e 100644
--- a/Fluent.Ribbon/Effects/GrayscaleEffect.cs
+++ b/Fluent.Ribbon/Effects/GrayscaleEffect.cs
@@ -42,7 +42,7 @@ private PixelShader CreatePixelShader()
if (DesignerProperties.GetIsInDesignMode(this) == false)
{
- pixelShader.UriSource = new Uri("/Fluent;component/Themes/Office2010/Effects/Grayscale.ps", UriKind.Relative);
+ pixelShader.UriSource = new Uri("/Fluent;component/Themes/Effects/Grayscale.ps", UriKind.Relative);
}
return pixelShader;
diff --git a/Fluent.Ribbon/Fluent.Ribbon.NET 4.0.csproj b/Fluent.Ribbon/Fluent.Ribbon.NET 4.0.csproj
index 566124ec7..91f568023 100644
--- a/Fluent.Ribbon/Fluent.Ribbon.NET 4.0.csproj
+++ b/Fluent.Ribbon/Fluent.Ribbon.NET 4.0.csproj
@@ -190,8 +190,8 @@
-
-
+
+
@@ -206,10 +206,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
Designer
MSBuild:Compile
@@ -218,10 +214,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -374,67 +366,11 @@
MSBuild:Compile
Designer
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
+
Designer
-
-
MSBuild:Compile
- Designer
-
+
Designer
MSBuild:Compile
@@ -442,10 +378,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -466,30 +398,6 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -498,22 +406,6 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -522,230 +414,18 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
@@ -757,45 +437,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
SET tmpError=0
-"$(ProjectDir)Themes\XamlCombine.exe" Office2010\Generic.txt Office2010\Generic.xaml
-SET tmpError=%25tmpError%25 + %25ERRORLEVEL%25
"$(ProjectDir)Themes\XamlCombine.exe" Office2013\Generic.txt Office2013\Generic.xaml
-SET tmpError=%25tmpError%25 + %25ERRORLEVEL%25
-"$(ProjectDir)Themes\XamlCombine.exe" Windows8\Generic.txt Windows8\Generic.xaml
SET /a tmpError=%25tmpError%25 + %25ERRORLEVEL%25
SET ERRORLEVEL=%25tmpError%25
diff --git a/Fluent.Ribbon/Fluent.Ribbon.NET 4.5.csproj b/Fluent.Ribbon/Fluent.Ribbon.NET 4.5.csproj
index 9c8ec1030..c3d2db298 100644
--- a/Fluent.Ribbon/Fluent.Ribbon.NET 4.5.csproj
+++ b/Fluent.Ribbon/Fluent.Ribbon.NET 4.5.csproj
@@ -190,8 +190,8 @@
-
-
+
+
@@ -206,10 +206,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
Designer
MSBuild:Compile
@@ -218,10 +214,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -374,67 +366,11 @@
MSBuild:Compile
Designer
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
+
Designer
-
-
MSBuild:Compile
- Designer
-
+
Designer
MSBuild:Compile
@@ -442,10 +378,6 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -466,30 +398,6 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -498,22 +406,6 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
@@ -522,230 +414,18 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
@@ -757,45 +437,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
SET tmpError=0
-"$(ProjectDir)Themes\XamlCombine.exe" Office2010\Generic.txt Office2010\Generic.xaml
-SET tmpError=%25tmpError%25 + %25ERRORLEVEL%25
"$(ProjectDir)Themes\XamlCombine.exe" Office2013\Generic.txt Office2013\Generic.xaml
-SET tmpError=%25tmpError%25 + %25ERRORLEVEL%25
-"$(ProjectDir)Themes\XamlCombine.exe" Windows8\Generic.txt Windows8\Generic.xaml
SET /a tmpError=%25tmpError%25 + %25ERRORLEVEL%25
SET ERRORLEVEL=%25tmpError%25
diff --git a/Fluent.Ribbon/Themes/Office2010/Effects/Grayscale.fx b/Fluent.Ribbon/Themes/Effects/Grayscale.fx
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Effects/Grayscale.fx
rename to Fluent.Ribbon/Themes/Effects/Grayscale.fx
diff --git a/Fluent.Ribbon/Themes/Office2010/Effects/Grayscale.ps b/Fluent.Ribbon/Themes/Effects/Grayscale.ps
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Effects/Grayscale.ps
rename to Fluent.Ribbon/Themes/Effects/Grayscale.ps
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenuItem.xaml b/Fluent.Ribbon/Themes/Generic/Controls/ApplicationMenuItem.xaml
similarity index 99%
rename from Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenuItem.xaml
rename to Fluent.Ribbon/Themes/Generic/Controls/ApplicationMenuItem.xaml
index fa3a9a0ea..e29021798 100644
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenuItem.xaml
+++ b/Fluent.Ribbon/Themes/Generic/Controls/ApplicationMenuItem.xaml
@@ -159,6 +159,7 @@
+
@@ -500,6 +501,7 @@
+
@@ -976,6 +978,7 @@
+
@@ -1299,6 +1302,7 @@
+
@@ -1585,16 +1589,6 @@
-
+
+
+
+
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/ApplicationMenu.png b/Fluent.Ribbon/Themes/Images/ApplicationMenu.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/ApplicationMenu.png
rename to Fluent.Ribbon/Themes/Images/ApplicationMenu.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/DialogLauncher.png b/Fluent.Ribbon/Themes/Images/DialogLauncher.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/DialogLauncher.png
rename to Fluent.Ribbon/Themes/Images/DialogLauncher.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/QuickAccessToolbarDropDown.png b/Fluent.Ribbon/Themes/Images/QuickAccessToolbarDropDown.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/QuickAccessToolbarDropDown.png
rename to Fluent.Ribbon/Themes/Images/QuickAccessToolbarDropDown.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/QuickAccessToolbarExtender.png b/Fluent.Ribbon/Themes/Images/QuickAccessToolbarExtender.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/QuickAccessToolbarExtender.png
rename to Fluent.Ribbon/Themes/Images/QuickAccessToolbarExtender.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/RibbonCollapse.png b/Fluent.Ribbon/Themes/Images/RibbonCollapse.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/RibbonCollapse.png
rename to Fluent.Ribbon/Themes/Images/RibbonCollapse.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/RibbonExpand.png b/Fluent.Ribbon/Themes/Images/RibbonExpand.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/RibbonExpand.png
rename to Fluent.Ribbon/Themes/Images/RibbonExpand.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/RibbonPin.png b/Fluent.Ribbon/Themes/Images/RibbonPin.png
similarity index 100%
rename from Fluent.Ribbon/Themes/Office2010/Images/RibbonPin.png
rename to Fluent.Ribbon/Themes/Images/RibbonPin.png
diff --git a/Fluent.Ribbon/Themes/Office2010/Black.xaml b/Fluent.Ribbon/Themes/Office2010/Black.xaml
deleted file mode 100644
index 11fba7796..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Black.xaml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Blue.xaml b/Fluent.Ribbon/Themes/Office2010/Blue.xaml
deleted file mode 100644
index b03d57609..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Blue.xaml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Colors/Colors.xaml b/Fluent.Ribbon/Themes/Office2010/Colors/Colors.xaml
deleted file mode 100644
index d4df2e0ce..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Colors/Colors.xaml
+++ /dev/null
@@ -1,399 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlack.xaml b/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlack.xaml
deleted file mode 100644
index 8ad5cccac..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlack.xaml
+++ /dev/null
@@ -1,487 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #D8484848
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlue.xaml b/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlue.xaml
deleted file mode 100644
index 6c2e25243..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsBlue.xaml
+++ /dev/null
@@ -1,484 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #D8F9F7FA
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsSilver.xaml b/Fluent.Ribbon/Themes/Office2010/Colors/ColorsSilver.xaml
deleted file mode 100644
index 8bfbb1ec7..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Colors/ColorsSilver.xaml
+++ /dev/null
@@ -1,475 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #D8FFFFFF
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenu.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenu.xaml
deleted file mode 100644
index 9d7669b5e..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ApplicationMenu.xaml
+++ /dev/null
@@ -1,391 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Backstage.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Backstage.xaml
deleted file mode 100644
index ba68337de..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Backstage.xaml
+++ /dev/null
@@ -1,295 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageControls.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/BackstageControls.xaml
deleted file mode 100644
index 0c1173729..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageControls.xaml
+++ /dev/null
@@ -1,1578 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabControl.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabControl.xaml
deleted file mode 100644
index 395cc04af..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabControl.xaml
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabItem.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabItem.xaml
deleted file mode 100644
index 9b449520c..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/BackstageTabItem.xaml
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Button.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Button.xaml
deleted file mode 100644
index 9a843bbef..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Button.xaml
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/CheckBox.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/CheckBox.xaml
deleted file mode 100644
index 95a507c12..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/CheckBox.xaml
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ComboBox.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ComboBox.xaml
deleted file mode 100644
index a893c7457..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ComboBox.xaml
+++ /dev/null
@@ -1,674 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ComboBoxItem.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ComboBoxItem.xaml
deleted file mode 100644
index 41dcd8fc1..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ComboBoxItem.xaml
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/DropDownButton.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/DropDownButton.xaml
deleted file mode 100644
index df2e5a5ac..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/DropDownButton.xaml
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Gallery.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Gallery.xaml
deleted file mode 100644
index fd4b1df99..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Gallery.xaml
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/GalleryItem.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/GalleryItem.xaml
deleted file mode 100644
index 8e2ac10f4..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/GalleryItem.xaml
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/InRibbonGallery.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/InRibbonGallery.xaml
deleted file mode 100644
index 989cbff3b..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/InRibbonGallery.xaml
+++ /dev/null
@@ -1,715 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/KeyTip.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/KeyTip.xaml
deleted file mode 100644
index e9e7626c3..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/KeyTip.xaml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Menu.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Menu.xaml
deleted file mode 100644
index 4f255ec4e..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Menu.xaml
+++ /dev/null
@@ -1,236 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/MenuItem.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/MenuItem.xaml
deleted file mode 100644
index 559d9315e..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/MenuItem.xaml
+++ /dev/null
@@ -1,952 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/QuickAccessToolbar.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/QuickAccessToolbar.xaml
deleted file mode 100644
index aa4b70e23..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/QuickAccessToolbar.xaml
+++ /dev/null
@@ -1,446 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Ribbon.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Ribbon.xaml
deleted file mode 100644
index 6fc594655..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Ribbon.xaml
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonContextualTabGroup.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonContextualTabGroup.xaml
deleted file mode 100644
index 37ebfcc17..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonContextualTabGroup.xaml
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonGroupBox.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonGroupBox.xaml
deleted file mode 100644
index 42d1a5b89..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonGroupBox.xaml
+++ /dev/null
@@ -1,816 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonSeparator.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonSeparator.xaml
deleted file mode 100644
index ef23d4d72..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonSeparator.xaml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonStatusBar.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonStatusBar.xaml
deleted file mode 100644
index 72d51ae0e..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonStatusBar.xaml
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabControl.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabControl.xaml
deleted file mode 100644
index b0cce180d..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabControl.xaml
+++ /dev/null
@@ -1,626 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabItem.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabItem.xaml
deleted file mode 100644
index aac51c2a0..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/RibbonTabItem.xaml
+++ /dev/null
@@ -1,518 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ScreenTip.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ScreenTip.xaml
deleted file mode 100644
index aebe75cc7..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ScreenTip.xaml
+++ /dev/null
@@ -1,447 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBar.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBar.xaml
deleted file mode 100644
index 47bc8001c..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBar.xaml
+++ /dev/null
@@ -1,637 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBarWhite.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBarWhite.xaml
deleted file mode 100644
index 420d720d2..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ScrollBarWhite.xaml
+++ /dev/null
@@ -1,576 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Slider.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Slider.xaml
deleted file mode 100644
index b3fee1304..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Slider.xaml
+++ /dev/null
@@ -1,344 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/Spinner.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/Spinner.xaml
deleted file mode 100644
index 9611d06ae..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/Spinner.xaml
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/SplitButton.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/SplitButton.xaml
deleted file mode 100644
index 8efe1d9ec..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/SplitButton.xaml
+++ /dev/null
@@ -1,736 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/StartScreenTabControl.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/StartScreenTabControl.xaml
deleted file mode 100644
index 654bd28c3..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/StartScreenTabControl.xaml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/StatusBar.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/StatusBar.xaml
deleted file mode 100644
index d1540e1ab..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/StatusBar.xaml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Controls/ToggleButton.xaml b/Fluent.Ribbon/Themes/Office2010/Controls/ToggleButton.xaml
deleted file mode 100644
index 318346006..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Controls/ToggleButton.xaml
+++ /dev/null
@@ -1,247 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Generic.txt b/Fluent.Ribbon/Themes/Office2010/Generic.txt
deleted file mode 100644
index 7a4b291d6..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Generic.txt
+++ /dev/null
@@ -1,55 +0,0 @@
-Office2010\Colors\Colors.xaml
-Office2010\Colors\ColorsSilver.xaml
-Office2010\Images\Images.xaml
-Generic\Controls\EmptyFocusStyle.xaml
-Office2010\Controls\ApplicationMenuItem.xaml
-Office2010\Controls\ApplicationMenu.xaml
-Office2010\Controls\Backstage.xaml
-Office2010\Controls\RibbonTabControl.xaml
-Office2010\Controls\RibbonTabItem.xaml
-Office2010\Controls\RibbonGroupBox.xaml
-Office2010\Controls\ScreenTip.xaml
-Generic\Controls\TwoLineLabel.xaml
-Office2010\Controls\Button.xaml
-Office2010\Controls\ToggleButton.xaml
-Office2010\Controls\DropDownButton.xaml
-Office2010\Controls\SplitButton.xaml
-Office2010\Controls\CheckBox.xaml
-Generic\Controls\RadioButton.xaml
-Generic\Controls\GalleryGroupContainer.xaml
-Generic\Controls\RibbonScrollViewer.xaml
-Office2010\Controls\RibbonContextualTabGroup.xaml
-Generic\Controls\RibbonTitleBar.xaml
-Office2010\Controls\KeyTip.xaml
-Office2010\Controls\QuickAccessToolBar.xaml
-Office2010\Controls\Menu.xaml
-Office2010\Controls\MenuItem.xaml
-Generic\Controls\MenuSeparator.xaml
-Generic\Controls\RibbonMenu.xaml
-Office2010\Controls\Gallery.xaml
-Office2010\Controls\GalleryItem.xaml
-Office2010\Controls\ComboBoxItem.xaml
-Office2010\Controls\InRibbonGallery.xaml
-Office2010\Controls\BackstageTabItem.xaml
-Office2010\Controls\BackstageControls.xaml
-Office2010\Controls\BackstageTabControl.xaml
-Generic\Controls\StartScreen.xaml
-Generic\Controls\StartScreenTabControlTemplate.xaml
-Office2010\Controls\StartScreenTabControl.xaml
-Office2010\Controls\RibbonSeparator.xaml
-Generic\Controls\RibbonToolBar.xaml
-Generic\Controls\RibbonToolBarControlGroup.xaml
-Office2010\Controls\StatusBar.xaml
-Office2010\Controls\ScrollBar.xaml
-Office2010\Controls\ScrollBarWhite.xaml
-Generic\Controls\RibbonTextBox.xaml
-Generic\Controls\TextBox.xaml
-Office2010\Controls\Spinner.xaml
-Office2010\Controls\ComboBox.xaml
-Office2010\Controls\Ribbon.xaml
-Office2010\Controls\ColorGallery.xaml
-Generic\Controls\SeparatorTabItem.xaml
-Office2010\Controls\RibbonStatusBar.xaml
-Office2010\Controls\Slider.xaml
-Office2010\RibbonWindow.xaml
-Generic\Common.xaml
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/BackstageCorner.png b/Fluent.Ribbon/Themes/Office2010/Images/BackstageCorner.png
deleted file mode 100644
index e51ceb866..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/BackstageCorner.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonClose.png b/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonClose.png
deleted file mode 100644
index 783d2bfe9..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonClose.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMaximize.png b/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMaximize.png
deleted file mode 100644
index f153c93bd..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMaximize.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMinimize.png b/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMinimize.png
deleted file mode 100644
index 3f75a5606..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonMinimize.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonNormalize.png b/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonNormalize.png
deleted file mode 100644
index f786470bd..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/CaptionButtonNormalize.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Checked.png b/Fluent.Ribbon/Themes/Office2010/Images/Checked.png
deleted file mode 100644
index 5ecec8e9f..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Checked.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Copy.png b/Fluent.Ribbon/Themes/Office2010/Images/Copy.png
deleted file mode 100644
index 0684fdd41..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Copy.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Cut.png b/Fluent.Ribbon/Themes/Office2010/Images/Cut.png
deleted file mode 100644
index d3ae4b75d..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Cut.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Help.png b/Fluent.Ribbon/Themes/Office2010/Images/Help.png
deleted file mode 100644
index 60826f9e0..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Help.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Images.xaml b/Fluent.Ribbon/Themes/Office2010/Images/Images.xaml
deleted file mode 100644
index be0fe5a10..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Images/Images.xaml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/MoreColors.png b/Fluent.Ribbon/Themes/Office2010/Images/MoreColors.png
deleted file mode 100644
index c7bbd7296..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/MoreColors.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Paste.png b/Fluent.Ribbon/Themes/Office2010/Images/Paste.png
deleted file mode 100644
index fe29eb39d..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Paste.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/ResizeGrip.png b/Fluent.Ribbon/Themes/Office2010/Images/ResizeGrip.png
deleted file mode 100644
index 2846108f5..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/ResizeGrip.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/Images/Warning.png b/Fluent.Ribbon/Themes/Office2010/Images/Warning.png
deleted file mode 100644
index 804da4237..000000000
Binary files a/Fluent.Ribbon/Themes/Office2010/Images/Warning.png and /dev/null differ
diff --git a/Fluent.Ribbon/Themes/Office2010/RibbonWindow.xaml b/Fluent.Ribbon/Themes/Office2010/RibbonWindow.xaml
deleted file mode 100644
index 7a7e38ee5..000000000
--- a/Fluent.Ribbon/Themes/Office2010/RibbonWindow.xaml
+++ /dev/null
@@ -1,673 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2010/Silver.xaml b/Fluent.Ribbon/Themes/Office2010/Silver.xaml
deleted file mode 100644
index 3752c76b2..000000000
--- a/Fluent.Ribbon/Themes/Office2010/Silver.xaml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Office2013/Controls/ApplicationMenu.xaml b/Fluent.Ribbon/Themes/Office2013/Controls/ApplicationMenu.xaml
index 5d8d6471b..c600746be 100644
--- a/Fluent.Ribbon/Themes/Office2013/Controls/ApplicationMenu.xaml
+++ b/Fluent.Ribbon/Themes/Office2013/Controls/ApplicationMenu.xaml
@@ -129,7 +129,7 @@
-
diff --git a/Fluent.Ribbon/Themes/Office2013/Controls/BackstageControls.xaml b/Fluent.Ribbon/Themes/Office2013/Controls/BackstageControls.xaml
index fb7536106..c4de34d0e 100644
--- a/Fluent.Ribbon/Themes/Office2013/Controls/BackstageControls.xaml
+++ b/Fluent.Ribbon/Themes/Office2013/Controls/BackstageControls.xaml
@@ -3,11 +3,6 @@
xmlns:Fluent="clr-namespace:Fluent"
xmlns:System="clr-namespace:System;assembly=mscorlib"
xmlns:Converters="clr-namespace:Fluent.Converters">
-
-
-
-
-
+
-
-
-
-
diff --git a/Fluent.Ribbon/Themes/Office2013/Controls/QuickAccessToolbar.xaml b/Fluent.Ribbon/Themes/Office2013/Controls/QuickAccessToolbar.xaml
index dd8666486..b94b05568 100644
--- a/Fluent.Ribbon/Themes/Office2013/Controls/QuickAccessToolbar.xaml
+++ b/Fluent.Ribbon/Themes/Office2013/Controls/QuickAccessToolbar.xaml
@@ -308,7 +308,7 @@
Height="22"
DockPanel.Dock="Right"
IsEnabled="{TemplateBinding IsEnabled}"
- Icon="pack://application:,,,/Fluent;Component/Themes/Office2010/Images/QuickAccessToolBarDropDown.png"
+ Icon="pack://application:,,,/Fluent;Component/Themes/Images/QuickAccessToolBarDropDown.png"
Size="Small"
ToolTip="{Binding Source={x:Static Fluent:Ribbon.Localization}, Path=QuickAccessToolBarDropDownButtonTooltip, Mode=OneWay}">
@@ -365,7 +365,6 @@
Margin="1,0" />
-
diff --git a/Fluent.Ribbon/Themes/Office2013/Controls/RibbonTabControl.xaml b/Fluent.Ribbon/Themes/Office2013/Controls/RibbonTabControl.xaml
index 4cd36c66b..0ab8a14b4 100644
--- a/Fluent.Ribbon/Themes/Office2013/Controls/RibbonTabControl.xaml
+++ b/Fluent.Ribbon/Themes/Office2013/Controls/RibbonTabControl.xaml
@@ -31,7 +31,7 @@
Height="Auto"
Stretch="None"
VerticalAlignment="Center"
- Source="/Fluent;Component/Themes/Office2010/Images/RibbonCollapse.png"
+ Source="/Fluent;Component/Themes/Images/RibbonCollapse.png"
Width="Auto"
Margin="2" />
@@ -303,7 +303,7 @@
-
@@ -330,7 +330,7 @@
-
+
-
diff --git a/Fluent.Ribbon/Themes/Windows8/Colors/Colors.xaml b/Fluent.Ribbon/Themes/Windows8/Colors/Colors.xaml
deleted file mode 100644
index 589a78267..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Colors/Colors.xaml
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Colors/ColorsSilver.xaml b/Fluent.Ribbon/Themes/Windows8/Colors/ColorsSilver.xaml
deleted file mode 100644
index 0244d9937..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Colors/ColorsSilver.xaml
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenu.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenu.xaml
deleted file mode 100644
index d01d30d62..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenu.xaml
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenuItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenuItem.xaml
deleted file mode 100644
index 62ecd3203..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ApplicationMenuItem.xaml
+++ /dev/null
@@ -1,1684 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Backstage.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Backstage.xaml
deleted file mode 100644
index 73eaa66db..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Backstage.xaml
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageControls.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/BackstageControls.xaml
deleted file mode 100644
index 232471156..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageControls.xaml
+++ /dev/null
@@ -1,1345 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabControl.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabControl.xaml
deleted file mode 100644
index 66a4dc9c9..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabControl.xaml
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabItem.xaml
deleted file mode 100644
index 7884c2397..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/BackstageTabItem.xaml
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Button.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Button.xaml
deleted file mode 100644
index d6768402a..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Button.xaml
+++ /dev/null
@@ -1,190 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/CheckBox.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/CheckBox.xaml
deleted file mode 100644
index 3e40a2ef3..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/CheckBox.xaml
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Visible
-
-
-
-
-
-
-
-
-
-
- Visible
-
-
-
-
-
-
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ColorGallery.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ColorGallery.xaml
deleted file mode 100644
index 2ca87eada..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ColorGallery.xaml
+++ /dev/null
@@ -1,420 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ComboBox.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ComboBox.xaml
deleted file mode 100644
index a10bba636..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ComboBox.xaml
+++ /dev/null
@@ -1,649 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ComboBoxItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ComboBoxItem.xaml
deleted file mode 100644
index 93a948930..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ComboBoxItem.xaml
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/DropDownButton.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/DropDownButton.xaml
deleted file mode 100644
index b49cb3b3c..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/DropDownButton.xaml
+++ /dev/null
@@ -1,317 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Gallery.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Gallery.xaml
deleted file mode 100644
index 54e1d5268..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Gallery.xaml
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/GalleryItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/GalleryItem.xaml
deleted file mode 100644
index 8955e9be2..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/GalleryItem.xaml
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/InRibbonGallery.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/InRibbonGallery.xaml
deleted file mode 100644
index e1489152c..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/InRibbonGallery.xaml
+++ /dev/null
@@ -1,660 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Menu.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Menu.xaml
deleted file mode 100644
index ea79c575a..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Menu.xaml
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/MenuItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/MenuItem.xaml
deleted file mode 100644
index 8c4f736c1..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/MenuItem.xaml
+++ /dev/null
@@ -1,890 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/QuickAccessToolbar.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/QuickAccessToolbar.xaml
deleted file mode 100644
index 47f31712f..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/QuickAccessToolbar.xaml
+++ /dev/null
@@ -1,425 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Ribbon.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Ribbon.xaml
deleted file mode 100644
index 008e14be4..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Ribbon.xaml
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonContextualTabGroup.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonContextualTabGroup.xaml
deleted file mode 100644
index 33e322d59..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonContextualTabGroup.xaml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonGroupBox.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonGroupBox.xaml
deleted file mode 100644
index eca860ace..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonGroupBox.xaml
+++ /dev/null
@@ -1,763 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonSeparator.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonSeparator.xaml
deleted file mode 100644
index dbb325712..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonSeparator.xaml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonStatusBar.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonStatusBar.xaml
deleted file mode 100644
index bdd34f627..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonStatusBar.xaml
+++ /dev/null
@@ -1,214 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabControl.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabControl.xaml
deleted file mode 100644
index e4fdb50ef..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabControl.xaml
+++ /dev/null
@@ -1,470 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabItem.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabItem.xaml
deleted file mode 100644
index 124213a1d..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/RibbonTabItem.xaml
+++ /dev/null
@@ -1,469 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ScrollBar.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ScrollBar.xaml
deleted file mode 100644
index abf3365b9..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ScrollBar.xaml
+++ /dev/null
@@ -1,637 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Slider.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Slider.xaml
deleted file mode 100644
index dbfd0e089..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Slider.xaml
+++ /dev/null
@@ -1,344 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/Spinner.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/Spinner.xaml
deleted file mode 100644
index 6c2ccdae7..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/Spinner.xaml
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/SplitButton.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/SplitButton.xaml
deleted file mode 100644
index 3a6c182fc..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/SplitButton.xaml
+++ /dev/null
@@ -1,532 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/StatusBar.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/StatusBar.xaml
deleted file mode 100644
index ccb33d3bb..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/StatusBar.xaml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Controls/ToggleButton.xaml b/Fluent.Ribbon/Themes/Windows8/Controls/ToggleButton.xaml
deleted file mode 100644
index d7b9edabe..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Controls/ToggleButton.xaml
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Generic.txt b/Fluent.Ribbon/Themes/Windows8/Generic.txt
deleted file mode 100644
index d707c2e57..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Generic.txt
+++ /dev/null
@@ -1,57 +0,0 @@
-Generic\Controls\Button.xaml
-Generic\Controls\WindowCommands.xaml
-Office2010\Colors\Colors.xaml
-Windows8\Colors\Colors.xaml
-Windows8\Colors\ColorsSilver.xaml
-Windows8\Images\Images.xaml
-Generic\Controls\EmptyFocusStyle.xaml
-Windows8\Controls\ApplicationMenuItem.xaml
-Windows8\Controls\ApplicationMenu.xaml
-Windows8\Controls\Backstage.xaml
-Windows8\Controls\RibbonTabControl.xaml
-Windows8\Controls\RibbonTabItem.xaml
-Windows8\Controls\RibbonGroupBox.xaml
-Office2010\Controls\ScreenTip.xaml
-Generic\Controls\TwoLineLabel.xaml
-Windows8\Controls\Button.xaml
-Windows8\Controls\ToggleButton.xaml
-Windows8\Controls\DropDownButton.xaml
-Windows8\Controls\SplitButton.xaml
-Windows8\Controls\CheckBox.xaml
-Generic\Controls\RadioButton.xaml
-Generic\Controls\GalleryGroupContainer.xaml
-Generic\Controls\RibbonScrollViewer.xaml
-Windows8\Controls\RibbonContextualTabGroup.xaml
-Generic\Controls\RibbonTitleBar.xaml
-Office2010\Controls\KeyTip.xaml
-Windows8\Controls\QuickAccessToolBar.xaml
-Windows8\Controls\Menu.xaml
-Windows8\Controls\MenuItem.xaml
-Generic\Controls\MenuSeparator.xaml
-Generic\Controls\RibbonMenu.xaml
-Windows8\Controls\Gallery.xaml
-Windows8\Controls\GalleryItem.xaml
-Windows8\Controls\ComboBoxItem.xaml
-Windows8\Controls\InRibbonGallery.xaml
-Windows8\Controls\BackstageTabItem.xaml
-Windows8\Controls\BackstageControls.xaml
-Windows8\Controls\BackstageTabControl.xaml
-Generic\Controls\StartScreen.xaml
-Generic\Controls\StartScreenTabControlTemplate.xaml
-Office2010\Controls\StartScreenTabControl.xaml
-Windows8\Controls\RibbonSeparator.xaml
-Generic\Controls\RibbonToolBar.xaml
-Generic\Controls\RibbonToolBarControlGroup.xaml
-Windows8\Controls\StatusBar.xaml
-Windows8\Controls\ScrollBar.xaml
-Generic\Controls\RibbonTextBox.xaml
-Generic\Controls\TextBox.xaml
-Windows8\Controls\Spinner.xaml
-Windows8\Controls\ComboBox.xaml
-Windows8\Controls\Ribbon.xaml
-Windows8\Controls\ColorGallery.xaml
-Generic\Controls\SeparatorTabItem.xaml
-Windows8\Controls\RibbonStatusBar.xaml
-Windows8\Controls\Slider.xaml
-Windows8\RibbonWindow.xaml
-Generic\Common.xaml
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Images/Images.xaml b/Fluent.Ribbon/Themes/Windows8/Images/Images.xaml
deleted file mode 100644
index 104767f3e..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Images/Images.xaml
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/RibbonWindow.xaml b/Fluent.Ribbon/Themes/Windows8/RibbonWindow.xaml
deleted file mode 100644
index d3000d879..000000000
--- a/Fluent.Ribbon/Themes/Windows8/RibbonWindow.xaml
+++ /dev/null
@@ -1,327 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Fluent.Ribbon/Themes/Windows8/Silver.xaml b/Fluent.Ribbon/Themes/Windows8/Silver.xaml
deleted file mode 100644
index 5ae5f0a45..000000000
--- a/Fluent.Ribbon/Themes/Windows8/Silver.xaml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 8195cfac0..3bf552715 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Fluent.Ribbon
This project was previously hosted on [CodePlex](https://fluent.codeplex.com/).
-Fluent.Ribbon is a library that implements an Office-like user interface for the Windows Presentation Foundation (WPF). It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on. It is bundled with Office 2010, Office 2013 and Windows 8 themes.
+Fluent.Ribbon is a library that implements an Office-like user interface for the Windows Presentation Foundation (WPF). It provides controls such as RibbonTabControl, Backstage, Gallery, QuickAccessToolbar, ScreenTip and so on.
![Fluent.png](https://raw.githubusercontent.com/fluentribbon/Fluent.Ribbon/master/Images/Fluent.png)