├── .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 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
57 |
58 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
81 |
82 |
83 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
--------------------------------------------------------------------------------
/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 | using WPFUIKitProfessional.Themes;
16 | using WPFUIKitProfessional.Pages;
17 |
18 | namespace WPFUIKitProfessional
19 | {
20 | ///
21 | /// Lógica de interacción para MainWindow.xaml
22 | ///
23 | public partial class MainWindow : Window
24 | {
25 | public MainWindow()
26 | {
27 | InitializeComponent();
28 | }
29 |
30 | private void Themes_Click(object sender, RoutedEventArgs e)
31 | {
32 | if (Themes.IsChecked == true)
33 | ThemesController.SetTheme(ThemesController.ThemeTypes.Dark);
34 | else
35 | ThemesController.SetTheme(ThemesController.ThemeTypes.Light);
36 | }
37 |
38 | private void btnClose_Click(object sender, RoutedEventArgs e)
39 | {
40 | Close();
41 | }
42 |
43 | private void btnRestore_Click(object sender, RoutedEventArgs e)
44 | {
45 | if (WindowState == WindowState.Normal)
46 | WindowState = WindowState.Maximized;
47 | else
48 | WindowState = WindowState.Normal;
49 | }
50 |
51 | private void btnMinimize_Click(object sender, RoutedEventArgs e)
52 | {
53 | WindowState = WindowState.Minimized;
54 | }
55 |
56 | private void rdHome_Click(object sender, RoutedEventArgs e)
57 | {
58 | frameContent.Navigate(new Home());
59 | }
60 |
61 | private void rdAnalytics_Click(object sender, RoutedEventArgs e)
62 | {
63 | frameContent.Navigate(new Analytics());
64 | }
65 |
66 | private void rdMessages_Click(object sender, RoutedEventArgs e)
67 | {
68 | frameContent.Navigate(new Messages());
69 | }
70 |
71 | private void rdCollections_Click(object sender, RoutedEventArgs e)
72 | {
73 | frameContent.Navigate(new Collections());
74 | }
75 |
76 | private void rdUsers_Click(object sender, RoutedEventArgs e)
77 | {
78 | frameContent.Navigate(new Users());
79 | }
80 | }
81 | }
82 |
--------------------------------------------------------------------------------
/Pages/Analytics.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Pages/Analytics.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 WPFUIKitProfessional.Pages
17 | {
18 | ///
19 | /// Lógica de interacción para Analytics.xaml
20 | ///
21 | public partial class Analytics : Page
22 | {
23 | public Analytics()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Pages/Collections.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Pages/Collections.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 WPFUIKitProfessional.Pages
17 | {
18 | ///
19 | /// Lógica de interacción para Collections.xaml
20 | ///
21 | public partial class Collections : Page
22 | {
23 | public Collections()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Pages/Home.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Pages/Home.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 WPFUIKitProfessional.Pages
17 | {
18 | ///
19 | /// Lógica de interacción para Home.xaml
20 | ///
21 | public partial class Home : Page
22 | {
23 | public Home()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Pages/Messages.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Pages/Messages.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 WPFUIKitProfessional.Pages
17 | {
18 | ///
19 | /// Lógica de interacción para Messages.xaml
20 | ///
21 | public partial class Messages : Page
22 | {
23 | public Messages()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Pages/Users.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Pages/Users.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 WPFUIKitProfessional.Pages
17 | {
18 | ///
19 | /// Lógica de interacción para Users.xaml
20 | ///
21 | public partial class Users : Page
22 | {
23 | public Users()
24 | {
25 | InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Resources;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 | using System.Windows;
6 |
7 | // La información general de un ensamblado se controla mediante el siguiente
8 | // conjunto de atributos. Cambie estos valores de atributo para modificar la información
9 | // asociada con un ensamblado.
10 | [assembly: AssemblyTitle("WPFUIKitProfessional")]
11 | [assembly: AssemblyDescription("")]
12 | [assembly: AssemblyConfiguration("")]
13 | [assembly: AssemblyCompany("")]
14 | [assembly: AssemblyProduct("WPFUIKitProfessional")]
15 | [assembly: AssemblyCopyright("Copyright © 2022")]
16 | [assembly: AssemblyTrademark("")]
17 | [assembly: AssemblyCulture("")]
18 |
19 | // Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles
20 | // para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde
21 | // COM, establezca el atributo ComVisible en true en este tipo.
22 | [assembly: ComVisible(false)]
23 |
24 | //Para comenzar a compilar aplicaciones que se puedan traducir, establezca
25 | //CultureYouAreCodingWith en el archivo .csproj
26 | //dentro de . Por ejemplo, si utiliza inglés de EE.UU.
27 | //en los archivos de código fuente, establezca en en-US. A continuación, quite la marca de comentario
28 | //del atributo NeutralResourceLanguage. Actualice "en-US" en
29 | //la siguiente línea para que coincida con el valor UICulture del archivo de proyecto.
30 |
31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32 |
33 |
34 | [assembly: ThemeInfo(
35 | ResourceDictionaryLocation.None, //donde se encuentran los diccionarios de recursos específicos del tema
36 | //(se utiliza si no se encuentra ningún recurso en la página,
37 | // ni diccionarios de recursos de la aplicación)
38 | ResourceDictionaryLocation.SourceAssembly //donde se encuentra el diccionario de recursos genérico
39 | //(se utiliza si no se encuentra ningún recurso en la página,
40 | // aplicación o diccionarios de recursos específicos del tema)
41 | )]
42 |
43 |
44 | // La información de versión de un ensamblado consta de los cuatro valores siguientes:
45 | //
46 | // Versión principal
47 | // Versión secundaria
48 | // Número de compilación
49 | // Revisión
50 | //
51 | // Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
52 | // utilizando el carácter "*", como se muestra a continuación:
53 | // [assembly: AssemblyVersion("1.0.*")]
54 | [assembly: AssemblyVersion("1.0.0.0")]
55 | [assembly: AssemblyFileVersion("1.0.0.0")]
56 |
--------------------------------------------------------------------------------
/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // Este código fue generado por una herramienta.
4 | // Versión de runtime: 4.0.30319.42000
5 | //
6 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
7 | // el código se vuelve a generar.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace WPFUIKitProfessional.Properties
12 | {
13 |
14 |
15 | ///
16 | /// Clase de recurso fuertemente tipado para buscar cadenas traducidas, etc.
17 | ///
18 | // StronglyTypedResourceBuilder generó automáticamente esta clase
19 | // a través de una herramienta como ResGen o Visual Studio.
20 | // Para agregar o quitar un miembro, edite el archivo .ResX y, a continuación, vuelva a ejecutar ResGen
21 | // con la opción /str o recompile su proyecto de VS.
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources
26 | {
27 |
28 | private static global::System.Resources.ResourceManager resourceMan;
29 |
30 | private static global::System.Globalization.CultureInfo resourceCulture;
31 |
32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33 | internal Resources()
34 | {
35 | }
36 |
37 | ///
38 | /// Devuelve la instancia ResourceManager almacenada en caché utilizada por esta clase.
39 | ///
40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
41 | internal static global::System.Resources.ResourceManager ResourceManager
42 | {
43 | get
44 | {
45 | if ((resourceMan == null))
46 | {
47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WPFUIKitProfessional.Properties.Resources", typeof(Resources).Assembly);
48 | resourceMan = temp;
49 | }
50 | return resourceMan;
51 | }
52 | }
53 |
54 | ///
55 | /// Invalida la propiedad CurrentUICulture del subproceso actual para todas las
56 | /// búsquedas de recursos usando esta clase de recursos fuertemente tipados.
57 | ///
58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
59 | internal static global::System.Globalization.CultureInfo Culture
60 | {
61 | get
62 | {
63 | return resourceCulture;
64 | }
65 | set
66 | {
67 | resourceCulture = value;
68 | }
69 | }
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/Properties/Resources.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 | text/microsoft-resx
107 |
108 |
109 | 2.0
110 |
111 |
112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
113 |
114 |
115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
--------------------------------------------------------------------------------
/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace WPFUIKitProfessional.Properties
12 | {
13 |
14 |
15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
18 | {
19 |
20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
21 |
22 | public static Settings Default
23 | {
24 | get
25 | {
26 | return defaultInstance;
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Styles/ButtonStyle.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
48 |
49 |
50 |
51 |
84 |
85 |
--------------------------------------------------------------------------------
/Styles/RadioButtonStyle.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
77 |
78 |
79 |
80 |
158 |
159 |
160 |
--------------------------------------------------------------------------------
/Themes/DarkTheme.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 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/Themes/LightTheme.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 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/Themes/ThemesController.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 |
8 | namespace WPFUIKitProfessional.Themes
9 | {
10 | public static class ThemesController
11 | {
12 | public static ThemeTypes CurrentTheme { get; set; }
13 |
14 | public enum ThemeTypes
15 | {
16 | Light, Dark
17 | }
18 |
19 | public static ResourceDictionary ThemeDictionary
20 | {
21 | get { return Application.Current.Resources.MergedDictionaries[0]; }
22 | set { Application.Current.Resources.MergedDictionaries[0] = value; }
23 | }
24 |
25 | private static void ChangeTheme(Uri uri)
26 | {
27 | ThemeDictionary = new ResourceDictionary() { Source = uri };
28 | }
29 |
30 | public static void SetTheme(ThemeTypes theme)
31 | {
32 | string themeName = null;
33 | CurrentTheme = theme;
34 | switch (theme)
35 | {
36 | case ThemeTypes.Dark: themeName = "DarkTheme"; break;
37 | case ThemeTypes.Light: themeName = "LightTheme"; break;
38 | }
39 |
40 | try
41 | {
42 | if (!string.IsNullOrEmpty(themeName))
43 | ChangeTheme(new Uri($"Themes/{themeName}.xaml", UriKind.Relative));
44 | }
45 | catch { }
46 | }
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/WPFUIKitProfessional.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}
8 | WinExe
9 | WPFUIKitProfessional
10 | WPFUIKitProfessional
11 | v4.8
12 | 512
13 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
14 | 4
15 | true
16 | true
17 |
18 |
19 | AnyCPU
20 | true
21 | full
22 | false
23 | bin\Debug\
24 | DEBUG;TRACE
25 | prompt
26 | 4
27 |
28 |
29 | AnyCPU
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | 4.0
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 | MSBuild:Compile
56 | Designer
57 |
58 |
59 | Analytics.xaml
60 |
61 |
62 | Collections.xaml
63 |
64 |
65 | Home.xaml
66 |
67 |
68 | Messages.xaml
69 |
70 |
71 | Users.xaml
72 |
73 |
74 |
75 | Designer
76 | MSBuild:Compile
77 |
78 |
79 | MSBuild:Compile
80 | Designer
81 |
82 |
83 | App.xaml
84 | Code
85 |
86 |
87 | MainWindow.xaml
88 | Code
89 |
90 |
91 | Designer
92 | MSBuild:Compile
93 |
94 |
95 | Designer
96 | MSBuild:Compile
97 |
98 |
99 | Designer
100 | MSBuild:Compile
101 |
102 |
103 | Designer
104 | MSBuild:Compile
105 |
106 |
107 | Designer
108 | MSBuild:Compile
109 |
110 |
111 | Designer
112 | MSBuild:Compile
113 |
114 |
115 | Designer
116 | MSBuild:Compile
117 |
118 |
119 | Designer
120 | MSBuild:Compile
121 |
122 |
123 | Designer
124 | MSBuild:Compile
125 |
126 |
127 |
128 |
129 | Code
130 |
131 |
132 | True
133 | True
134 | Resources.resx
135 |
136 |
137 | True
138 | Settings.settings
139 | True
140 |
141 |
142 | ResXFileCodeGenerator
143 | Resources.Designer.cs
144 |
145 |
146 | SettingsSingleFileGenerator
147 | Settings.Designer.cs
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
--------------------------------------------------------------------------------
/WPFUIKitProfessional.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.0.31912.275
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPFUIKitProfessional", "WPFUIKitProfessional.csproj", "{F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {F33269E7-0955-4C6C-B8C3-496AA2F2F8D2}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {657E29FE-2105-4A83-AC41-D02C2DBC5CCB}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/bin/Debug/WPFUIKitProfessional.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/bin/Debug/WPFUIKitProfessional.exe
--------------------------------------------------------------------------------
/bin/Debug/WPFUIKitProfessional.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bin/Debug/WPFUIKitProfessional.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/bin/Debug/WPFUIKitProfessional.pdb
--------------------------------------------------------------------------------
/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs:
--------------------------------------------------------------------------------
1 | //
2 | using System;
3 | using System.Reflection;
4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
5 |
--------------------------------------------------------------------------------
/obj/Debug/App.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/App.baml
--------------------------------------------------------------------------------
/obj/Debug/App.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "7574F96E7524A265B14D744740F4BFC40B18B3D61D376C237AB6F10A60D01E81"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional;
33 |
34 |
35 | namespace WPFUIKitProfessional {
36 |
37 |
38 | ///
39 | /// App
40 | ///
41 | public partial class App : System.Windows.Application {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 |
56 | #line 5 "..\..\App.xaml"
57 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
58 |
59 | #line default
60 | #line hidden
61 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/app.xaml", System.UriKind.Relative);
62 |
63 | #line 1 "..\..\App.xaml"
64 | System.Windows.Application.LoadComponent(this, resourceLocater);
65 |
66 | #line default
67 | #line hidden
68 | }
69 |
70 | ///
71 | /// Application Entry Point.
72 | ///
73 | [System.STAThreadAttribute()]
74 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
75 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
76 | public static void Main() {
77 | WPFUIKitProfessional.App app = new WPFUIKitProfessional.App();
78 | app.InitializeComponent();
79 | app.Run();
80 | }
81 | }
82 | }
83 |
84 |
--------------------------------------------------------------------------------
/obj/Debug/App.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "7574F96E7524A265B14D744740F4BFC40B18B3D61D376C237AB6F10A60D01E81"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional;
33 |
34 |
35 | namespace WPFUIKitProfessional {
36 |
37 |
38 | ///
39 | /// App
40 | ///
41 | public partial class App : System.Windows.Application {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 |
56 | #line 5 "..\..\App.xaml"
57 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
58 |
59 | #line default
60 | #line hidden
61 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/app.xaml", System.UriKind.Relative);
62 |
63 | #line 1 "..\..\App.xaml"
64 | System.Windows.Application.LoadComponent(this, resourceLocater);
65 |
66 | #line default
67 | #line hidden
68 | }
69 |
70 | ///
71 | /// Application Entry Point.
72 | ///
73 | [System.STAThreadAttribute()]
74 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
75 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
76 | public static void Main() {
77 | WPFUIKitProfessional.App app = new WPFUIKitProfessional.App();
78 | app.InitializeComponent();
79 | app.Run();
80 | }
81 | }
82 | }
83 |
84 |
--------------------------------------------------------------------------------
/obj/Debug/Assets/Icons/Icons.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Assets/Icons/Icons.baml
--------------------------------------------------------------------------------
/obj/Debug/DesignTimeResolveAssemblyReferences.cache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
--------------------------------------------------------------------------------
/obj/Debug/MainWindow.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/MainWindow.baml
--------------------------------------------------------------------------------
/obj/Debug/MainWindow.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F42BFEF1D33736E1028A63A54E77A7D913299188DE2C9F90E9B880C463925BE3"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional;
33 |
34 |
35 | namespace WPFUIKitProfessional {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 7 "..\..\MainWindow.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal WPFUIKitProfessional.MainWindow home;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 25 "..\..\MainWindow.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.Grid gridMenu;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 40 "..\..\MainWindow.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.RadioButton rdHome;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 41 "..\..\MainWindow.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.RadioButton rdAnalytics;
71 |
72 | #line default
73 | #line hidden
74 |
75 |
76 | #line 42 "..\..\MainWindow.xaml"
77 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
78 | internal System.Windows.Controls.RadioButton rdMessages;
79 |
80 | #line default
81 | #line hidden
82 |
83 |
84 | #line 43 "..\..\MainWindow.xaml"
85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
86 | internal System.Windows.Controls.RadioButton rdCollections;
87 |
88 | #line default
89 | #line hidden
90 |
91 |
92 | #line 44 "..\..\MainWindow.xaml"
93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
94 | internal System.Windows.Controls.RadioButton rdUsers;
95 |
96 | #line default
97 | #line hidden
98 |
99 |
100 | #line 48 "..\..\MainWindow.xaml"
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
102 | internal System.Windows.Controls.RadioButton rdNotifications;
103 |
104 | #line default
105 | #line hidden
106 |
107 |
108 | #line 49 "..\..\MainWindow.xaml"
109 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
110 | internal System.Windows.Controls.RadioButton rdSettings;
111 |
112 | #line default
113 | #line hidden
114 |
115 |
116 | #line 75 "..\..\MainWindow.xaml"
117 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
118 | internal System.Windows.Controls.Primitives.ToggleButton Themes;
119 |
120 | #line default
121 | #line hidden
122 |
123 |
124 | #line 103 "..\..\MainWindow.xaml"
125 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
126 | internal System.Windows.Controls.Button btnClose;
127 |
128 | #line default
129 | #line hidden
130 |
131 |
132 | #line 104 "..\..\MainWindow.xaml"
133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
134 | internal System.Windows.Controls.Button btnRestore;
135 |
136 | #line default
137 | #line hidden
138 |
139 |
140 | #line 116 "..\..\MainWindow.xaml"
141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
142 | internal System.Windows.Controls.Button btnMinimize;
143 |
144 | #line default
145 | #line hidden
146 |
147 |
148 | #line 122 "..\..\MainWindow.xaml"
149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
150 | internal System.Windows.Controls.Frame frameContent;
151 |
152 | #line default
153 | #line hidden
154 |
155 | private bool _contentLoaded;
156 |
157 | ///
158 | /// InitializeComponent
159 | ///
160 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
161 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
162 | public void InitializeComponent() {
163 | if (_contentLoaded) {
164 | return;
165 | }
166 | _contentLoaded = true;
167 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/mainwindow.xaml", System.UriKind.Relative);
168 |
169 | #line 1 "..\..\MainWindow.xaml"
170 | System.Windows.Application.LoadComponent(this, resourceLocater);
171 |
172 | #line default
173 | #line hidden
174 | }
175 |
176 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
177 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
178 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
179 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
180 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
181 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
182 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
183 | switch (connectionId)
184 | {
185 | case 1:
186 | this.home = ((WPFUIKitProfessional.MainWindow)(target));
187 | return;
188 | case 2:
189 | this.gridMenu = ((System.Windows.Controls.Grid)(target));
190 | return;
191 | case 3:
192 | this.rdHome = ((System.Windows.Controls.RadioButton)(target));
193 |
194 | #line 40 "..\..\MainWindow.xaml"
195 | this.rdHome.Click += new System.Windows.RoutedEventHandler(this.rdHome_Click);
196 |
197 | #line default
198 | #line hidden
199 | return;
200 | case 4:
201 | this.rdAnalytics = ((System.Windows.Controls.RadioButton)(target));
202 |
203 | #line 41 "..\..\MainWindow.xaml"
204 | this.rdAnalytics.Click += new System.Windows.RoutedEventHandler(this.rdAnalytics_Click);
205 |
206 | #line default
207 | #line hidden
208 | return;
209 | case 5:
210 | this.rdMessages = ((System.Windows.Controls.RadioButton)(target));
211 |
212 | #line 42 "..\..\MainWindow.xaml"
213 | this.rdMessages.Click += new System.Windows.RoutedEventHandler(this.rdMessages_Click);
214 |
215 | #line default
216 | #line hidden
217 | return;
218 | case 6:
219 | this.rdCollections = ((System.Windows.Controls.RadioButton)(target));
220 |
221 | #line 43 "..\..\MainWindow.xaml"
222 | this.rdCollections.Click += new System.Windows.RoutedEventHandler(this.rdCollections_Click);
223 |
224 | #line default
225 | #line hidden
226 | return;
227 | case 7:
228 | this.rdUsers = ((System.Windows.Controls.RadioButton)(target));
229 |
230 | #line 44 "..\..\MainWindow.xaml"
231 | this.rdUsers.Click += new System.Windows.RoutedEventHandler(this.rdUsers_Click);
232 |
233 | #line default
234 | #line hidden
235 | return;
236 | case 8:
237 | this.rdNotifications = ((System.Windows.Controls.RadioButton)(target));
238 | return;
239 | case 9:
240 | this.rdSettings = ((System.Windows.Controls.RadioButton)(target));
241 | return;
242 | case 10:
243 | this.Themes = ((System.Windows.Controls.Primitives.ToggleButton)(target));
244 |
245 | #line 77 "..\..\MainWindow.xaml"
246 | this.Themes.Click += new System.Windows.RoutedEventHandler(this.Themes_Click);
247 |
248 | #line default
249 | #line hidden
250 | return;
251 | case 11:
252 | this.btnClose = ((System.Windows.Controls.Button)(target));
253 |
254 | #line 103 "..\..\MainWindow.xaml"
255 | this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click);
256 |
257 | #line default
258 | #line hidden
259 | return;
260 | case 12:
261 | this.btnRestore = ((System.Windows.Controls.Button)(target));
262 |
263 | #line 104 "..\..\MainWindow.xaml"
264 | this.btnRestore.Click += new System.Windows.RoutedEventHandler(this.btnRestore_Click);
265 |
266 | #line default
267 | #line hidden
268 | return;
269 | case 13:
270 | this.btnMinimize = ((System.Windows.Controls.Button)(target));
271 |
272 | #line 116 "..\..\MainWindow.xaml"
273 | this.btnMinimize.Click += new System.Windows.RoutedEventHandler(this.btnMinimize_Click);
274 |
275 | #line default
276 | #line hidden
277 | return;
278 | case 14:
279 | this.frameContent = ((System.Windows.Controls.Frame)(target));
280 | return;
281 | }
282 | this._contentLoaded = true;
283 | }
284 | }
285 | }
286 |
287 |
--------------------------------------------------------------------------------
/obj/Debug/MainWindow.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F42BFEF1D33736E1028A63A54E77A7D913299188DE2C9F90E9B880C463925BE3"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional;
33 |
34 |
35 | namespace WPFUIKitProfessional {
36 |
37 |
38 | ///
39 | /// MainWindow
40 | ///
41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
42 |
43 |
44 | #line 7 "..\..\MainWindow.xaml"
45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
46 | internal WPFUIKitProfessional.MainWindow home;
47 |
48 | #line default
49 | #line hidden
50 |
51 |
52 | #line 25 "..\..\MainWindow.xaml"
53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
54 | internal System.Windows.Controls.Grid gridMenu;
55 |
56 | #line default
57 | #line hidden
58 |
59 |
60 | #line 40 "..\..\MainWindow.xaml"
61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
62 | internal System.Windows.Controls.RadioButton rdHome;
63 |
64 | #line default
65 | #line hidden
66 |
67 |
68 | #line 41 "..\..\MainWindow.xaml"
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
70 | internal System.Windows.Controls.RadioButton rdAnalytics;
71 |
72 | #line default
73 | #line hidden
74 |
75 |
76 | #line 42 "..\..\MainWindow.xaml"
77 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
78 | internal System.Windows.Controls.RadioButton rdMessages;
79 |
80 | #line default
81 | #line hidden
82 |
83 |
84 | #line 43 "..\..\MainWindow.xaml"
85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
86 | internal System.Windows.Controls.RadioButton rdCollections;
87 |
88 | #line default
89 | #line hidden
90 |
91 |
92 | #line 44 "..\..\MainWindow.xaml"
93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
94 | internal System.Windows.Controls.RadioButton rdUsers;
95 |
96 | #line default
97 | #line hidden
98 |
99 |
100 | #line 48 "..\..\MainWindow.xaml"
101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
102 | internal System.Windows.Controls.RadioButton rdNotifications;
103 |
104 | #line default
105 | #line hidden
106 |
107 |
108 | #line 49 "..\..\MainWindow.xaml"
109 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
110 | internal System.Windows.Controls.RadioButton rdSettings;
111 |
112 | #line default
113 | #line hidden
114 |
115 |
116 | #line 75 "..\..\MainWindow.xaml"
117 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
118 | internal System.Windows.Controls.Primitives.ToggleButton Themes;
119 |
120 | #line default
121 | #line hidden
122 |
123 |
124 | #line 103 "..\..\MainWindow.xaml"
125 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
126 | internal System.Windows.Controls.Button btnClose;
127 |
128 | #line default
129 | #line hidden
130 |
131 |
132 | #line 104 "..\..\MainWindow.xaml"
133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
134 | internal System.Windows.Controls.Button btnRestore;
135 |
136 | #line default
137 | #line hidden
138 |
139 |
140 | #line 116 "..\..\MainWindow.xaml"
141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
142 | internal System.Windows.Controls.Button btnMinimize;
143 |
144 | #line default
145 | #line hidden
146 |
147 |
148 | #line 122 "..\..\MainWindow.xaml"
149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
150 | internal System.Windows.Controls.Frame frameContent;
151 |
152 | #line default
153 | #line hidden
154 |
155 | private bool _contentLoaded;
156 |
157 | ///
158 | /// InitializeComponent
159 | ///
160 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
161 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
162 | public void InitializeComponent() {
163 | if (_contentLoaded) {
164 | return;
165 | }
166 | _contentLoaded = true;
167 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/mainwindow.xaml", System.UriKind.Relative);
168 |
169 | #line 1 "..\..\MainWindow.xaml"
170 | System.Windows.Application.LoadComponent(this, resourceLocater);
171 |
172 | #line default
173 | #line hidden
174 | }
175 |
176 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
177 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
178 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
179 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
180 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
181 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
182 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
183 | switch (connectionId)
184 | {
185 | case 1:
186 | this.home = ((WPFUIKitProfessional.MainWindow)(target));
187 | return;
188 | case 2:
189 | this.gridMenu = ((System.Windows.Controls.Grid)(target));
190 | return;
191 | case 3:
192 | this.rdHome = ((System.Windows.Controls.RadioButton)(target));
193 |
194 | #line 40 "..\..\MainWindow.xaml"
195 | this.rdHome.Click += new System.Windows.RoutedEventHandler(this.rdHome_Click);
196 |
197 | #line default
198 | #line hidden
199 | return;
200 | case 4:
201 | this.rdAnalytics = ((System.Windows.Controls.RadioButton)(target));
202 |
203 | #line 41 "..\..\MainWindow.xaml"
204 | this.rdAnalytics.Click += new System.Windows.RoutedEventHandler(this.rdAnalytics_Click);
205 |
206 | #line default
207 | #line hidden
208 | return;
209 | case 5:
210 | this.rdMessages = ((System.Windows.Controls.RadioButton)(target));
211 |
212 | #line 42 "..\..\MainWindow.xaml"
213 | this.rdMessages.Click += new System.Windows.RoutedEventHandler(this.rdMessages_Click);
214 |
215 | #line default
216 | #line hidden
217 | return;
218 | case 6:
219 | this.rdCollections = ((System.Windows.Controls.RadioButton)(target));
220 |
221 | #line 43 "..\..\MainWindow.xaml"
222 | this.rdCollections.Click += new System.Windows.RoutedEventHandler(this.rdCollections_Click);
223 |
224 | #line default
225 | #line hidden
226 | return;
227 | case 7:
228 | this.rdUsers = ((System.Windows.Controls.RadioButton)(target));
229 |
230 | #line 44 "..\..\MainWindow.xaml"
231 | this.rdUsers.Click += new System.Windows.RoutedEventHandler(this.rdUsers_Click);
232 |
233 | #line default
234 | #line hidden
235 | return;
236 | case 8:
237 | this.rdNotifications = ((System.Windows.Controls.RadioButton)(target));
238 | return;
239 | case 9:
240 | this.rdSettings = ((System.Windows.Controls.RadioButton)(target));
241 | return;
242 | case 10:
243 | this.Themes = ((System.Windows.Controls.Primitives.ToggleButton)(target));
244 |
245 | #line 77 "..\..\MainWindow.xaml"
246 | this.Themes.Click += new System.Windows.RoutedEventHandler(this.Themes_Click);
247 |
248 | #line default
249 | #line hidden
250 | return;
251 | case 11:
252 | this.btnClose = ((System.Windows.Controls.Button)(target));
253 |
254 | #line 103 "..\..\MainWindow.xaml"
255 | this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click);
256 |
257 | #line default
258 | #line hidden
259 | return;
260 | case 12:
261 | this.btnRestore = ((System.Windows.Controls.Button)(target));
262 |
263 | #line 104 "..\..\MainWindow.xaml"
264 | this.btnRestore.Click += new System.Windows.RoutedEventHandler(this.btnRestore_Click);
265 |
266 | #line default
267 | #line hidden
268 | return;
269 | case 13:
270 | this.btnMinimize = ((System.Windows.Controls.Button)(target));
271 |
272 | #line 116 "..\..\MainWindow.xaml"
273 | this.btnMinimize.Click += new System.Windows.RoutedEventHandler(this.btnMinimize_Click);
274 |
275 | #line default
276 | #line hidden
277 | return;
278 | case 14:
279 | this.frameContent = ((System.Windows.Controls.Frame)(target));
280 | return;
281 | }
282 | this._contentLoaded = true;
283 | }
284 | }
285 | }
286 |
287 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Analytics.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Pages/Analytics.baml
--------------------------------------------------------------------------------
/obj/Debug/Pages/Analytics.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Analytics.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "70323952216D9474DFD6B582B8407E9970380D078507CB3C037CD04833B3934F"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Analytics
40 | ///
41 | public partial class Analytics : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/analytics.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Analytics.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Analytics.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Analytics.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "70323952216D9474DFD6B582B8407E9970380D078507CB3C037CD04833B3934F"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Analytics
40 | ///
41 | public partial class Analytics : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/analytics.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Analytics.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Collections.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Pages/Collections.baml
--------------------------------------------------------------------------------
/obj/Debug/Pages/Collections.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Collections.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "4D67DC1EC90BCD8FEDB063C7607712C1E9F1364023A8F1948E2BCCB4E6F0EC72"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Collections
40 | ///
41 | public partial class Collections : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/collections.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Collections.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Collections.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Collections.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "4D67DC1EC90BCD8FEDB063C7607712C1E9F1364023A8F1948E2BCCB4E6F0EC72"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Collections
40 | ///
41 | public partial class Collections : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/collections.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Collections.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Home.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Pages/Home.baml
--------------------------------------------------------------------------------
/obj/Debug/Pages/Home.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Home.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D1CB90A3C1749E2AEC3284BDE3AA0A0E47131E632371FC89AF93F9936360999F"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Home
40 | ///
41 | public partial class Home : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/home.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Home.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Home.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Home.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D1CB90A3C1749E2AEC3284BDE3AA0A0E47131E632371FC89AF93F9936360999F"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Home
40 | ///
41 | public partial class Home : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/home.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Home.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Messages.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Pages/Messages.baml
--------------------------------------------------------------------------------
/obj/Debug/Pages/Messages.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Messages.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2BD2B4021DAB68B28A7FA232292258B159ECB8EA9F7DA13946660B96EEB33C99"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Messages
40 | ///
41 | public partial class Messages : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/messages.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Messages.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Messages.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Messages.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2BD2B4021DAB68B28A7FA232292258B159ECB8EA9F7DA13946660B96EEB33C99"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Messages
40 | ///
41 | public partial class Messages : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/messages.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Messages.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Users.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Pages/Users.baml
--------------------------------------------------------------------------------
/obj/Debug/Pages/Users.g.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Users.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F8D6354D93E6DDD0BD10CCCF8736B50D06484ACBDF7297F294FB9C4BCC163328"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Users
40 | ///
41 | public partial class Users : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/users.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Users.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Pages/Users.g.i.cs:
--------------------------------------------------------------------------------
1 | #pragma checksum "..\..\..\Pages\Users.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F8D6354D93E6DDD0BD10CCCF8736B50D06484ACBDF7297F294FB9C4BCC163328"
2 | //------------------------------------------------------------------------------
3 | //
4 | // Este código fue generado por una herramienta.
5 | // Versión de runtime:4.0.30319.42000
6 | //
7 | // Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
8 | // se vuelve a generar el código.
9 | //
10 | //------------------------------------------------------------------------------
11 |
12 | using System;
13 | using System.Diagnostics;
14 | using System.Windows;
15 | using System.Windows.Automation;
16 | using System.Windows.Controls;
17 | using System.Windows.Controls.Primitives;
18 | using System.Windows.Data;
19 | using System.Windows.Documents;
20 | using System.Windows.Ink;
21 | using System.Windows.Input;
22 | using System.Windows.Markup;
23 | using System.Windows.Media;
24 | using System.Windows.Media.Animation;
25 | using System.Windows.Media.Effects;
26 | using System.Windows.Media.Imaging;
27 | using System.Windows.Media.Media3D;
28 | using System.Windows.Media.TextFormatting;
29 | using System.Windows.Navigation;
30 | using System.Windows.Shapes;
31 | using System.Windows.Shell;
32 | using WPFUIKitProfessional.Pages;
33 |
34 |
35 | namespace WPFUIKitProfessional.Pages {
36 |
37 |
38 | ///
39 | /// Users
40 | ///
41 | public partial class Users : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector {
42 |
43 | private bool _contentLoaded;
44 |
45 | ///
46 | /// InitializeComponent
47 | ///
48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
50 | public void InitializeComponent() {
51 | if (_contentLoaded) {
52 | return;
53 | }
54 | _contentLoaded = true;
55 | System.Uri resourceLocater = new System.Uri("/WPFUIKitProfessional;component/pages/users.xaml", System.UriKind.Relative);
56 |
57 | #line 1 "..\..\..\Pages\Users.xaml"
58 | System.Windows.Application.LoadComponent(this, resourceLocater);
59 |
60 | #line default
61 | #line hidden
62 | }
63 |
64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()]
65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
66 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
67 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
68 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
70 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
71 | this._contentLoaded = true;
72 | }
73 | }
74 | }
75 |
76 |
--------------------------------------------------------------------------------
/obj/Debug/Styles/ButtonStyle.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Styles/ButtonStyle.baml
--------------------------------------------------------------------------------
/obj/Debug/Styles/RadioButtonStyle.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Styles/RadioButtonStyle.baml
--------------------------------------------------------------------------------
/obj/Debug/Themes/DarkTheme.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Themes/DarkTheme.baml
--------------------------------------------------------------------------------
/obj/Debug/Themes/LightTheme.baml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/Themes/LightTheme.baml
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.Properties.Resources.resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.Properties.Resources.resources
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.csproj.AssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.csproj.AssemblyReference.cache
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 26d602e9bc42ab8270a1de714d423a0ef5265611
2 |
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\bin\Debug\WPFUIKitProfessional.exe.config
2 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\bin\Debug\WPFUIKitProfessional.exe
3 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\bin\Debug\WPFUIKitProfessional.pdb
4 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.csproj.AssemblyReference.cache
5 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.csproj.SuggestedBindingRedirects.cache
6 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Themes\DarkTheme.baml
7 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Themes\LightTheme.baml
8 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\MainWindow.g.cs
9 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\App.g.cs
10 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional_MarkupCompile.cache
11 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional_MarkupCompile.lref
12 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\App.baml
13 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\MainWindow.baml
14 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.g.resources
15 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.Properties.Resources.resources
16 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.csproj.GenerateResource.cache
17 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.csproj.CoreCompileInputs.cache
18 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.exe
19 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\WPFUIKitProfessional.pdb
20 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Assets\Icons\Icons.baml
21 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Styles\RadioButtonStyle.baml
22 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Styles\ButtonStyle.baml
23 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Home.g.cs
24 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Home.baml
25 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Analytics.g.cs
26 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Collections.g.cs
27 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Messages.g.cs
28 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Users.g.cs
29 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Analytics.baml
30 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Collections.baml
31 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Messages.baml
32 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\Pages\Users.baml
33 |
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.csproj.GenerateResource.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.csproj.GenerateResource.cache
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.csproj.SuggestedBindingRedirects.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.csproj.SuggestedBindingRedirects.cache
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.exe
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.g.resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.g.resources
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jeyderht/WPFUIKitProfessional/89b52ae808830aeb04fadc74f470178a58f1c961/obj/Debug/WPFUIKitProfessional.pdb
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional_MarkupCompile.cache:
--------------------------------------------------------------------------------
1 | WPFUIKitProfessional
2 |
3 |
4 | winexe
5 | C#
6 | .cs
7 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\
8 | WPFUIKitProfessional
9 | none
10 | false
11 | DEBUG;TRACE
12 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\App.xaml
13 | 11786055239
14 |
15 | 11501414405
16 | 13-38814620
17 | Assets\Icons\Icons.xaml;MainWindow.xaml;Pages\Analytics.xaml;Pages\Collections.xaml;Pages\Home.xaml;Pages\Messages.xaml;Pages\Users.xaml;Styles\ButtonStyle.xaml;Styles\RadioButtonStyle.xaml;Themes\DarkTheme.xaml;Themes\LightTheme.xaml;
18 |
19 | False
20 |
21 |
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional_MarkupCompile.i.cache:
--------------------------------------------------------------------------------
1 | WPFUIKitProfessional
2 |
3 |
4 | winexe
5 | C#
6 | .cs
7 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\obj\Debug\
8 | WPFUIKitProfessional
9 | none
10 | false
11 | DEBUG;TRACE
12 | C:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\App.xaml
13 | 11786055239
14 |
15 | 12-1871774770
16 | 13-38814620
17 | Assets\Icons\Icons.xaml;MainWindow.xaml;Pages\Analytics.xaml;Pages\Collections.xaml;Pages\Home.xaml;Pages\Messages.xaml;Pages\Users.xaml;Styles\ButtonStyle.xaml;Styles\RadioButtonStyle.xaml;Themes\DarkTheme.xaml;Themes\LightTheme.xaml;
18 |
19 | True
20 |
21 |
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional_MarkupCompile.i.lref:
--------------------------------------------------------------------------------
1 |
2 |
3 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Collections.xaml;;
4 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Users.xaml;;
5 |
6 |
--------------------------------------------------------------------------------
/obj/Debug/WPFUIKitProfessional_MarkupCompile.lref:
--------------------------------------------------------------------------------
1 |
2 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\App.xaml;;
3 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\MainWindow.xaml;;
4 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Analytics.xaml;;
5 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Collections.xaml;;
6 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Home.xaml;;
7 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Messages.xaml;;
8 | FC:\Users\JEYDERHT\Desktop\WPF UI Design\WPFUIKitProfessional\Pages\Users.xaml;;
9 |
10 |
--------------------------------------------------------------------------------