├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── src ├── PhotonTheme.WpfDemo ├── App.xaml ├── App.xaml.cs ├── Buttons.xaml ├── Buttons.xaml.cs ├── Colors.xaml ├── Colors.xaml.cs ├── Fields.xaml ├── Fields.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PhotonTheme.WpfDemo.csproj ├── Typography.xaml └── Typography.xaml.cs ├── PhotonTheme.sln └── PhotonTheme ├── Controls ├── ControlzEx │ └── PackIconBase.cs ├── Enums │ ├── BindingUpdateTrigger.cs │ └── VerificationResult.cs ├── Extensions │ ├── ButtonExtension.cs │ ├── FieldExtension.cs │ ├── PackIconExtension.cs │ ├── ScrollBarExtension.cs │ └── ShadowExtension.cs ├── Interfaces │ └── IVerificationField.cs ├── PackIcon │ ├── PackIcon.cs │ ├── PackIconDataFactory.cs │ └── PackIconKind.cs └── VerificationBox.cs ├── PhotonTheme.csproj ├── PhotonTheme.csproj.DotSettings ├── Themes ├── Base │ ├── ButtonBase.xaml │ ├── CheckBoxBase.xaml │ ├── ScrollBarBase.xaml │ ├── TabControlBase.xaml │ ├── TextBlockBase.xaml │ ├── TextBoxBase.xaml │ └── VerificationBoxBase.xaml ├── Defaults.xaml ├── General │ ├── Colors.xaml │ ├── Fonts.xaml │ └── Shadows.xaml ├── Generic.xaml └── Styles │ ├── Button.xaml │ ├── CheckBox.xaml │ ├── ScrollBar.xaml │ ├── TabControl.xaml │ ├── TextBlock.xaml │ ├── TextBox.xaml │ └── VerificationBox.xaml └── Utilities ├── Converters ├── NullToVisibilityConverter.cs ├── ShadowConverter.cs ├── ShadowInfo.cs └── StringToVisibility.cs └── Resources └── Lato ├── Lato-Black.ttf ├── Lato-BlackItalic.ttf ├── Lato-Bold.ttf ├── Lato-BoldItalic.ttf ├── Lato-Hairline.ttf ├── Lato-HairlineItalic.ttf ├── Lato-Italic.ttf ├── Lato-Light.ttf ├── Lato-LightItalic.ttf ├── Lato-Regular.ttf └── OFL.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/README.md -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/App.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/App.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Buttons.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Buttons.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Buttons.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Colors.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Colors.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Colors.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Fields.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Fields.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Fields.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Fields.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/MainWindow.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/PhotonTheme.WpfDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/PhotonTheme.WpfDemo.csproj -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Typography.xaml -------------------------------------------------------------------------------- /src/PhotonTheme.WpfDemo/Typography.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.WpfDemo/Typography.xaml.cs -------------------------------------------------------------------------------- /src/PhotonTheme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme.sln -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/ControlzEx/PackIconBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/ControlzEx/PackIconBase.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Enums/BindingUpdateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Enums/BindingUpdateTrigger.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Enums/VerificationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Enums/VerificationResult.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Extensions/ButtonExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Extensions/ButtonExtension.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Extensions/FieldExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Extensions/FieldExtension.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Extensions/PackIconExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Extensions/PackIconExtension.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Extensions/ScrollBarExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Extensions/ScrollBarExtension.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Extensions/ShadowExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Extensions/ShadowExtension.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/Interfaces/IVerificationField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/Interfaces/IVerificationField.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/PackIcon/PackIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/PackIcon/PackIcon.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/PackIcon/PackIconDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/PackIcon/PackIconDataFactory.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/PackIcon/PackIconKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/PackIcon/PackIconKind.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Controls/VerificationBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Controls/VerificationBox.cs -------------------------------------------------------------------------------- /src/PhotonTheme/PhotonTheme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/PhotonTheme.csproj -------------------------------------------------------------------------------- /src/PhotonTheme/PhotonTheme.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/PhotonTheme.csproj.DotSettings -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/ButtonBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/ButtonBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/CheckBoxBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/CheckBoxBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/ScrollBarBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/ScrollBarBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/TabControlBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/TabControlBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/TextBlockBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/TextBlockBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/TextBoxBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/TextBoxBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Base/VerificationBoxBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Base/VerificationBoxBase.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Defaults.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Defaults.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/General/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/General/Colors.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/General/Fonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/General/Fonts.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/General/Shadows.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/General/Shadows.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/Button.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/CheckBox.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/ScrollBar.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/TabControl.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/TextBox.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Themes/Styles/VerificationBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Themes/Styles/VerificationBox.xaml -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Converters/ShadowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Converters/ShadowConverter.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Converters/ShadowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Converters/ShadowInfo.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Converters/StringToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Converters/StringToVisibility.cs -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Hairline.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /src/PhotonTheme/Utilities/Resources/Lato/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/PhotonTheme/HEAD/src/PhotonTheme/Utilities/Resources/Lato/OFL.txt --------------------------------------------------------------------------------