├── .gitattributes ├── .gitignore ├── README.md ├── Screenshot1.png └── src ├── WpfOfficeTheme.sln └── WpfOfficeTheme ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Themes ├── Converters │ └── LeftMarginMultiplierConverter.cs ├── Extensions │ ├── ColorExtension.cs │ └── TreeViewItemExtension.cs └── Styles │ ├── Button.xaml │ ├── CheckBox.xaml │ ├── Colors.xaml │ ├── ComboBox.xaml │ ├── CommonControls.xaml │ ├── DataGrid.xaml │ ├── Expander.xaml │ ├── Generic.xaml │ ├── GroupBox.xaml │ ├── Label.xaml │ ├── ListBox.xaml │ ├── ListView.xaml │ ├── Menu.xaml │ ├── RadioButton.xaml │ ├── ScrollViewer.xaml │ ├── Separator.xaml │ ├── TabControl.xaml │ ├── TextBlock.xaml │ ├── TextBox.xaml │ ├── ToggleButton.xaml │ └── TreeView.xaml └── WpfOfficeTheme.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/Screenshot1.png -------------------------------------------------------------------------------- /src/WpfOfficeTheme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme.sln -------------------------------------------------------------------------------- /src/WpfOfficeTheme/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/App.config -------------------------------------------------------------------------------- /src/WpfOfficeTheme/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/App.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/App.xaml.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/MainWindow.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Properties/Resources.resx -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Properties/Settings.settings -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Converters/LeftMarginMultiplierConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Converters/LeftMarginMultiplierConverter.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Extensions/ColorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Extensions/ColorExtension.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Extensions/TreeViewItemExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Extensions/TreeViewItemExtension.cs -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Button.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/CheckBox.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/ComboBox.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/CommonControls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/CommonControls.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/DataGrid.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Expander.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Generic.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/GroupBox.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Label.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/ListBox.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/ListView.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Menu.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/RadioButton.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/ScrollViewer.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/Separator.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/TabControl.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/TextBox.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/ToggleButton.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/Themes/Styles/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/Themes/Styles/TreeView.xaml -------------------------------------------------------------------------------- /src/WpfOfficeTheme/WpfOfficeTheme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanyaPristupova/WpfOfficeTheme/HEAD/src/WpfOfficeTheme/WpfOfficeTheme.csproj --------------------------------------------------------------------------------