├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Controls ├── GooeyButton.cs ├── GooeyButton.xaml ├── GooeyButtonItem.cs ├── GooeyButtonItem.xaml └── GooeyButtonItemsPanel.cs ├── GooeyButton.csproj ├── GooeyButton.sln ├── Images └── Preview.gif ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Readme.md └── Themes └── Generic.xaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Controls/GooeyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Controls/GooeyButton.cs -------------------------------------------------------------------------------- /Controls/GooeyButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Controls/GooeyButton.xaml -------------------------------------------------------------------------------- /Controls/GooeyButtonItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Controls/GooeyButtonItem.cs -------------------------------------------------------------------------------- /Controls/GooeyButtonItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Controls/GooeyButtonItem.xaml -------------------------------------------------------------------------------- /Controls/GooeyButtonItemsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Controls/GooeyButtonItemsPanel.cs -------------------------------------------------------------------------------- /GooeyButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/GooeyButton.csproj -------------------------------------------------------------------------------- /GooeyButton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/GooeyButton.sln -------------------------------------------------------------------------------- /Images/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Images/Preview.gif -------------------------------------------------------------------------------- /MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/MainPage.xaml -------------------------------------------------------------------------------- /MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/MainPage.xaml.cs -------------------------------------------------------------------------------- /Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Package.appxmanifest -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | ### Gooey Button 2 | 3 | ![](Images/Preview.gif) -------------------------------------------------------------------------------- /Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/GooeyButton/HEAD/Themes/Generic.xaml --------------------------------------------------------------------------------