├── .gitignore ├── AppBar ├── AppBarButtonSecondaryIconStyle │ ├── AppBarButtonSecondaryIconStyle.gif │ ├── AppBarButtonSecondaryIconStyle.xaml │ └── README.md └── AppBarToggleButtonUnderlineStyle │ ├── AppBarToggleButtonUnderlineStyle.xaml │ ├── DefaultChecked.PNG │ ├── README.md │ ├── ordinaryCompact.PNG │ ├── themeCompact.PNG │ └── themeFullSize.png ├── Button ├── ButtonCircleStyle │ ├── ButtonCircleStyle.gif │ ├── ButtonCircleStyle.xaml │ └── README.md └── ButtonRoundedStyle │ ├── ButtonRoundedStyle.gif │ ├── ButtonRoundedStyle.xaml │ └── README.md ├── ContentDialog └── ContentDialogWithCloseButtonStyle │ ├── ContentDialogWithCloseButtonStyle.gif │ ├── ContentDialogWithCloseButtonStyle.xaml │ └── README.md ├── LICENSE ├── Pivot ├── PivotBottomHeaderStyle │ ├── PivotBottomHeaderStyle.gif │ ├── PivotBottomHeaderStyle.xaml │ └── README.md ├── PivotHeaderItemAccentUnderlineStyle │ ├── PivotHeaderItemAccentUnderlineStyle.gif │ ├── PivotHeaderItemAccentUnderlineStyle.xaml │ └── README.md └── PivotTabbedStyle │ ├── PivotHeaderItemTabbedStyle.xaml │ ├── PivotTabbedStyle.gif │ ├── PivotTabbedStyle.xaml │ └── README.md ├── ProgressRing ├── ProgressRingStyle1.gif ├── ProgressRingStyle1.xaml ├── ProgressRingStyle2.gif ├── ProgressRingStyle2.xaml └── README.md ├── README.md └── ToggleButton └── ToggleButtonTwitterStyle ├── README.md ├── ToggleButtonHeartStyle.xaml ├── ToggleButtonSmileyStyle.xaml ├── ToggleButtonStarStyle.xaml └── ToggleButtonTwitterStyle.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /AppBar/AppBarButtonSecondaryIconStyle/AppBarButtonSecondaryIconStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarButtonSecondaryIconStyle/AppBarButtonSecondaryIconStyle.gif -------------------------------------------------------------------------------- /AppBar/AppBarButtonSecondaryIconStyle/AppBarButtonSecondaryIconStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarButtonSecondaryIconStyle/AppBarButtonSecondaryIconStyle.xaml -------------------------------------------------------------------------------- /AppBar/AppBarButtonSecondaryIconStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarButtonSecondaryIconStyle/README.md -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/AppBarToggleButtonUnderlineStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/AppBarToggleButtonUnderlineStyle.xaml -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/DefaultChecked.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/DefaultChecked.PNG -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/README.md -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/ordinaryCompact.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/ordinaryCompact.PNG -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/themeCompact.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/themeCompact.PNG -------------------------------------------------------------------------------- /AppBar/AppBarToggleButtonUnderlineStyle/themeFullSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/AppBar/AppBarToggleButtonUnderlineStyle/themeFullSize.png -------------------------------------------------------------------------------- /Button/ButtonCircleStyle/ButtonCircleStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonCircleStyle/ButtonCircleStyle.gif -------------------------------------------------------------------------------- /Button/ButtonCircleStyle/ButtonCircleStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonCircleStyle/ButtonCircleStyle.xaml -------------------------------------------------------------------------------- /Button/ButtonCircleStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonCircleStyle/README.md -------------------------------------------------------------------------------- /Button/ButtonRoundedStyle/ButtonRoundedStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonRoundedStyle/ButtonRoundedStyle.gif -------------------------------------------------------------------------------- /Button/ButtonRoundedStyle/ButtonRoundedStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonRoundedStyle/ButtonRoundedStyle.xaml -------------------------------------------------------------------------------- /Button/ButtonRoundedStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Button/ButtonRoundedStyle/README.md -------------------------------------------------------------------------------- /ContentDialog/ContentDialogWithCloseButtonStyle/ContentDialogWithCloseButtonStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ContentDialog/ContentDialogWithCloseButtonStyle/ContentDialogWithCloseButtonStyle.gif -------------------------------------------------------------------------------- /ContentDialog/ContentDialogWithCloseButtonStyle/ContentDialogWithCloseButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ContentDialog/ContentDialogWithCloseButtonStyle/ContentDialogWithCloseButtonStyle.xaml -------------------------------------------------------------------------------- /ContentDialog/ContentDialogWithCloseButtonStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ContentDialog/ContentDialogWithCloseButtonStyle/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /Pivot/PivotBottomHeaderStyle/PivotBottomHeaderStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotBottomHeaderStyle/PivotBottomHeaderStyle.gif -------------------------------------------------------------------------------- /Pivot/PivotBottomHeaderStyle/PivotBottomHeaderStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotBottomHeaderStyle/PivotBottomHeaderStyle.xaml -------------------------------------------------------------------------------- /Pivot/PivotBottomHeaderStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotBottomHeaderStyle/README.md -------------------------------------------------------------------------------- /Pivot/PivotHeaderItemAccentUnderlineStyle/PivotHeaderItemAccentUnderlineStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotHeaderItemAccentUnderlineStyle/PivotHeaderItemAccentUnderlineStyle.gif -------------------------------------------------------------------------------- /Pivot/PivotHeaderItemAccentUnderlineStyle/PivotHeaderItemAccentUnderlineStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotHeaderItemAccentUnderlineStyle/PivotHeaderItemAccentUnderlineStyle.xaml -------------------------------------------------------------------------------- /Pivot/PivotHeaderItemAccentUnderlineStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotHeaderItemAccentUnderlineStyle/README.md -------------------------------------------------------------------------------- /Pivot/PivotTabbedStyle/PivotHeaderItemTabbedStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotTabbedStyle/PivotHeaderItemTabbedStyle.xaml -------------------------------------------------------------------------------- /Pivot/PivotTabbedStyle/PivotTabbedStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotTabbedStyle/PivotTabbedStyle.gif -------------------------------------------------------------------------------- /Pivot/PivotTabbedStyle/PivotTabbedStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotTabbedStyle/PivotTabbedStyle.xaml -------------------------------------------------------------------------------- /Pivot/PivotTabbedStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/Pivot/PivotTabbedStyle/README.md -------------------------------------------------------------------------------- /ProgressRing/ProgressRingStyle1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ProgressRing/ProgressRingStyle1.gif -------------------------------------------------------------------------------- /ProgressRing/ProgressRingStyle1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ProgressRing/ProgressRingStyle1.xaml -------------------------------------------------------------------------------- /ProgressRing/ProgressRingStyle2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ProgressRing/ProgressRingStyle2.gif -------------------------------------------------------------------------------- /ProgressRing/ProgressRingStyle2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ProgressRing/ProgressRingStyle2.xaml -------------------------------------------------------------------------------- /ProgressRing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ProgressRing/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/README.md -------------------------------------------------------------------------------- /ToggleButton/ToggleButtonTwitterStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ToggleButton/ToggleButtonTwitterStyle/README.md -------------------------------------------------------------------------------- /ToggleButton/ToggleButtonTwitterStyle/ToggleButtonHeartStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ToggleButton/ToggleButtonTwitterStyle/ToggleButtonHeartStyle.xaml -------------------------------------------------------------------------------- /ToggleButton/ToggleButtonTwitterStyle/ToggleButtonSmileyStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ToggleButton/ToggleButtonTwitterStyle/ToggleButtonSmileyStyle.xaml -------------------------------------------------------------------------------- /ToggleButton/ToggleButtonTwitterStyle/ToggleButtonStarStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ToggleButton/ToggleButtonTwitterStyle/ToggleButtonStarStyle.xaml -------------------------------------------------------------------------------- /ToggleButton/ToggleButtonTwitterStyle/ToggleButtonTwitterStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raamakrishnan/UWP-Styles-Library/HEAD/ToggleButton/ToggleButtonTwitterStyle/ToggleButtonTwitterStyle.gif --------------------------------------------------------------------------------