├── WPF Rounded Button.rar ├── Images └── Rounded Button Image.jpg ├── WPF Rounded Button Preview Image.jpg ├── README.md ├── Source ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml.cs └── MainWindow.xaml └── LICENSE /WPF Rounded Button.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF-Rounded-Button/HEAD/WPF Rounded Button.rar -------------------------------------------------------------------------------- /Images/Rounded Button Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF-Rounded-Button/HEAD/Images/Rounded Button Image.jpg -------------------------------------------------------------------------------- /WPF Rounded Button Preview Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF-Rounded-Button/HEAD/WPF Rounded Button Preview Image.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WPF - Rounded Button 2 | 3 | 4 | How to make a Rounded Button in WPF - https://youtu.be/AIJM7slUhzg 5 | 6 | ![Button Thumbnail](https://user-images.githubusercontent.com/55704859/179337405-a7b9cc90-998f-45d5-839f-9d24095b5ca9.jpg) 7 | 8 | Icon Credits : https://icons8.com/icons 9 | 10 | GitHub Account : https://github.com/CSharpDesignPro 11 | -------------------------------------------------------------------------------- /Source/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Source/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace RoundedButtonDemo 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Source/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace RoundedButtonDemo 17 | { 18 | /// 19 | /// Interaction logic for MainWindow.xaml 20 | /// 21 | public partial class MainWindow : Window 22 | { 23 | public MainWindow() 24 | { 25 | InitializeComponent(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Arun Mutharasu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Source/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | 17 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 72 | 73 | 74 | 79 | 85 | 91 |