├── .vs └── WPFUIKitProfessional │ ├── project-colors.json │ └── v17 │ └── .suo ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets └── Icons │ ├── Icons.xaml │ └── Logo.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Pages ├── Analytics.xaml ├── Analytics.xaml.cs ├── Collections.xaml ├── Collections.xaml.cs ├── Home.xaml ├── Home.xaml.cs ├── Messages.xaml ├── Messages.xaml.cs ├── Users.xaml └── Users.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Styles ├── ButtonStyle.xaml └── RadioButtonStyle.xaml ├── Themes ├── DarkTheme.xaml ├── LightTheme.xaml └── ThemesController.cs ├── WPFUIKitProfessional.csproj ├── WPFUIKitProfessional.sln ├── bin └── Debug │ ├── WPFUIKitProfessional.exe │ ├── WPFUIKitProfessional.exe.config │ └── WPFUIKitProfessional.pdb └── obj └── Debug ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs ├── App.baml ├── App.g.cs ├── App.g.i.cs ├── Assets └── Icons │ └── Icons.baml ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── MainWindow.baml ├── MainWindow.g.cs ├── MainWindow.g.i.cs ├── Pages ├── Analytics.baml ├── Analytics.g.cs ├── Analytics.g.i.cs ├── Collections.baml ├── Collections.g.cs ├── Collections.g.i.cs ├── Home.baml ├── Home.g.cs ├── Home.g.i.cs ├── Messages.baml ├── Messages.g.cs ├── Messages.g.i.cs ├── Users.baml ├── Users.g.cs └── Users.g.i.cs ├── Styles ├── ButtonStyle.baml └── RadioButtonStyle.baml ├── Themes ├── DarkTheme.baml └── LightTheme.baml ├── WPFUIKitProfessional.Properties.Resources.resources ├── WPFUIKitProfessional.csproj.AssemblyReference.cache ├── WPFUIKitProfessional.csproj.CoreCompileInputs.cache ├── WPFUIKitProfessional.csproj.FileListAbsolute.txt ├── WPFUIKitProfessional.csproj.GenerateResource.cache ├── WPFUIKitProfessional.csproj.SuggestedBindingRedirects.cache ├── WPFUIKitProfessional.exe ├── WPFUIKitProfessional.g.resources ├── WPFUIKitProfessional.pdb ├── WPFUIKitProfessional_MarkupCompile.cache ├── WPFUIKitProfessional_MarkupCompile.i.cache ├── WPFUIKitProfessional_MarkupCompile.i.lref └── WPFUIKitProfessional_MarkupCompile.lref /.vs/WPFUIKitProfessional/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "f33269e7-0955-4c6c-b8c3-496aa2f2f8d2": { 5 | "ProjectGuid": "f33269e7-0955-4c6c-b8c3-496aa2f2f8d2", 6 | "DisplayName": "WPFUIKitProfessional", 7 | "ColorIndex": 0 8 | }, 9 | "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { 10 | "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", 11 | "DisplayName": "Archivos varios", 12 | "ColorIndex": -1 13 | } 14 | }, 15 | "NextColorIndex": 1 16 | } -------------------------------------------------------------------------------- /.vs/WPFUIKitProfessional/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/.vs/WPFUIKitProfessional/v17/.suo -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /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 WPFUIKitProfessional 10 | { 11 | /// 12 | /// Lógica de interacción para App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Icons/Icons.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Assets/Icons/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/Assets/Icons/Logo.png -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 63 | 64 | 65 |