├── COMPLETE_FLAT_UI.sln ├── COMPLETE_FLAT_UI.v11.suo ├── COMPLETE_FLAT_UI ├── App.config ├── COMPLETE_FLAT_UI.csproj ├── COMPLETE_FLAT_UI.csproj.user ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── FormListaClientes.cs ├── FormListaClientes.designer.cs ├── FormListaClientes.resx ├── FormLogo.cs ├── FormLogo.designer.cs ├── FormLogo.resx ├── FormMantCliente.cs ├── FormMantCliente.designer.cs ├── FormMantCliente.resx ├── FormMembresia.cs ├── FormMembresia.designer.cs ├── FormMembresia.resx ├── FormMenuPrincipal.Designer.cs ├── FormMenuPrincipal.cs ├── FormMenuPrincipal.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── APs.PNG │ ├── Close.png │ ├── Dashboard.PNG │ ├── Membresia.PNG │ ├── Minimize.png │ ├── Minimize1.png │ ├── Normal.png │ ├── Planes.PNG │ ├── icono-cliente.png │ ├── logoUI.png │ ├── logoUI2.png │ ├── maximize.png │ ├── maximize2.png │ ├── maximize3.png │ ├── menu.png │ ├── menu2.png │ ├── new logo.png │ ├── new logo1.png │ ├── new logo2.png │ ├── new logo3.png │ ├── new logo4.png │ ├── new logo5.png │ ├── perfil.png │ ├── satellite-dish (1).png │ ├── satellite-dish.png │ └── shut-down.png ├── bin │ └── Debug │ │ ├── COMPLETE_FLAT_UI.application │ │ ├── COMPLETE_FLAT_UI.exe │ │ ├── COMPLETE_FLAT_UI.exe.config │ │ ├── COMPLETE_FLAT_UI.exe.manifest │ │ ├── COMPLETE_FLAT_UI.pdb │ │ ├── COMPLETE_FLAT_UI.vshost.application │ │ ├── COMPLETE_FLAT_UI.vshost.exe │ │ ├── COMPLETE_FLAT_UI.vshost.exe.config │ │ ├── COMPLETE_FLAT_UI.vshost.exe.manifest │ │ └── app.publish │ │ └── COMPLETE_FLAT_UI.exe ├── obj │ └── Debug │ │ ├── COMPLETE_FLAT_UI.Form1.resources │ │ ├── COMPLETE_FLAT_UI.FormListaClientes.resources │ │ ├── COMPLETE_FLAT_UI.FormLogo.resources │ │ ├── COMPLETE_FLAT_UI.FormMantCliente.resources │ │ ├── COMPLETE_FLAT_UI.FormMembresia.resources │ │ ├── COMPLETE_FLAT_UI.FormMenuPrincipal.resources │ │ ├── COMPLETE_FLAT_UI.Properties.Resources.resources │ │ ├── COMPLETE_FLAT_UI.application │ │ ├── COMPLETE_FLAT_UI.csproj.FileListAbsolute.txt │ │ ├── COMPLETE_FLAT_UI.csproj.GenerateResource.Cache │ │ ├── COMPLETE_FLAT_UI.csprojResolveAssemblyReference.cache │ │ ├── COMPLETE_FLAT_UI.exe │ │ ├── COMPLETE_FLAT_UI.exe.manifest │ │ ├── COMPLETE_FLAT_UI.pdb │ │ ├── COMPLETE_FLAT_UI.test.FormMenuPrincipal.resources │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll └── test │ ├── FormMenuPrincipal.Designer.cs │ ├── FormMenuPrincipal.cs │ └── FormMenuPrincipal.resx ├── LICENSE └── README.md /COMPLETE_FLAT_UI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COMPLETE_FLAT_UI", "COMPLETE_FLAT_UI\COMPLETE_FLAT_UI.csproj", "{2C6921B3-8558-4914-8254-11C9EE505B00}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2C6921B3-8558-4914-8254-11C9EE505B00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2C6921B3-8558-4914-8254-11C9EE505B00}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2C6921B3-8558-4914-8254-11C9EE505B00}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2C6921B3-8558-4914-8254-11C9EE505B00}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI.v11.suo -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/COMPLETE_FLAT_UI.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {2C6921B3-8558-4914-8254-11C9EE505B00} 8 | WinExe 9 | Properties 10 | COMPLETE_FLAT_UI 11 | COMPLETE_FLAT_UI 12 | v4.6.1 13 | 512 14 | false 15 | D:\Programacion\instaladores\ 16 | true 17 | Disk 18 | false 19 | Foreground 20 | 7 21 | Days 22 | false 23 | false 24 | true 25 | 1 26 | 1.0.0.%2a 27 | false 28 | true 29 | true 30 | 31 | 32 | AnyCPU 33 | true 34 | full 35 | false 36 | bin\Debug\ 37 | DEBUG;TRACE 38 | prompt 39 | 4 40 | 41 | 42 | AnyCPU 43 | pdbonly 44 | true 45 | bin\Release\ 46 | TRACE 47 | prompt 48 | 4 49 | 50 | 51 | 5DC12FED69455C5A8A9A1DE0E520C128CB66939E 52 | 53 | 54 | COMPLETE_FLAT_UI_ClaveTemporal.pfx 55 | 56 | 57 | true 58 | 59 | 60 | false 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | Form 77 | 78 | 79 | Form1.cs 80 | 81 | 82 | Form 83 | 84 | 85 | FormListaClientes.cs 86 | 87 | 88 | Form 89 | 90 | 91 | FormLogo.cs 92 | 93 | 94 | Form 95 | 96 | 97 | FormMantCliente.cs 98 | 99 | 100 | Form 101 | 102 | 103 | FormMembresia.cs 104 | 105 | 106 | Form 107 | 108 | 109 | FormMenuPrincipal.cs 110 | 111 | 112 | 113 | 114 | Form 115 | 116 | 117 | FormMenuPrincipal.cs 118 | 119 | 120 | Form1.cs 121 | 122 | 123 | FormListaClientes.cs 124 | 125 | 126 | FormLogo.cs 127 | 128 | 129 | FormMantCliente.cs 130 | 131 | 132 | FormMembresia.cs 133 | 134 | 135 | FormMenuPrincipal.cs 136 | 137 | 138 | ResXFileCodeGenerator 139 | Resources.Designer.cs 140 | Designer 141 | 142 | 143 | True 144 | Resources.resx 145 | True 146 | 147 | 148 | FormMenuPrincipal.cs 149 | 150 | 151 | SettingsSingleFileGenerator 152 | Settings.Designer.cs 153 | 154 | 155 | True 156 | Settings.settings 157 | True 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | False 244 | .NET Framework 3.5 SP1 Client Profile 245 | false 246 | 247 | 248 | False 249 | .NET Framework 3.5 SP1 250 | false 251 | 252 | 253 | 254 | 261 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/COMPLETE_FLAT_UI.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | es-ES 11 | false 12 | 13 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // Form1 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.ClientSize = new System.Drawing.Size(493, 302); 38 | this.Name = "Form1"; 39 | this.Text = "Form1"; 40 | this.ResumeLayout(false); 41 | 42 | } 43 | 44 | #endregion 45 | } 46 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace COMPLETE_FLAT_UI 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Form1.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormListaClientes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace COMPLETE_FLAT_UI 12 | { 13 | public partial class FormListaClientes : Form 14 | { 15 | public FormListaClientes() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void btnCerrar_Click(object sender, EventArgs e) 21 | { 22 | this.Close(); 23 | } 24 | 25 | private void FormListaClientes_Load(object sender, EventArgs e) 26 | { 27 | InsertarFilas(); 28 | } 29 | 30 | 31 | private void BtnCerrar_Click_1(object sender, EventArgs e) 32 | { 33 | this.Close(); 34 | } 35 | 36 | private void btnEditar_Click(object sender, EventArgs e) 37 | { 38 | FormMantCliente frm = new FormMantCliente(); 39 | if (dataGridView1.SelectedRows.Count > 0) 40 | { 41 | frm.txtid.Text= dataGridView1.CurrentRow.Cells[0].Value.ToString(); 42 | frm.txtnombre.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString(); 43 | frm.txtapellido.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString(); 44 | frm.txtdireccion.Text = dataGridView1.CurrentRow.Cells[3].Value.ToString(); 45 | frm.txttelefono.Text = dataGridView1.CurrentRow.Cells[4].Value.ToString(); 46 | 47 | frm.ShowDialog(); 48 | 49 | } 50 | else 51 | MessageBox.Show("seleccione una fila por favor"); 52 | } 53 | 54 | private void btnNuevo_Click(object sender, EventArgs e) 55 | { 56 | FormMantCliente frm = new FormMantCliente(); 57 | frm.ShowDialog(); 58 | } 59 | 60 | private void InsertarFilas() 61 | { 62 | dataGridView1.Rows.Insert(0, "1", "Rafael", "Fernandez", "AV. Melgar", "56465"); 63 | dataGridView1.Rows.Insert(1, "2", "Rafael", "Fernandez", "AV. Melgar", "56465"); 64 | dataGridView1.Rows.Insert(2, "3", "Rafael", "Fernandez", "AV. Melgar", "56465"); 65 | dataGridView1.Rows.Insert(3, "4", "Rafael", "Fernandez", "AV. Melgar", "56465"); 66 | dataGridView1.Rows.Insert(4, "5", "Rafael", "Fernandez", "AV. Melgar", "56465"); 67 | dataGridView1.Rows.Insert(5, "6", "Rafael", "Fernandez", "AV. Melgar", "56465"); 68 | dataGridView1.Rows.Insert(6, "7", "Rafael", "Fernandez", "AV. Melgar", "56465"); 69 | dataGridView1.Rows.Insert(7, "8", "Rafael", "Fernandez", "AV. Melgar", "56465"); 70 | dataGridView1.Rows.Insert(8, "9", "Rafael", "Fernandez", "AV. Melgar", "56465"); 71 | dataGridView1.Rows.Insert(9, "10", "Rafael", "Fernandez", "AV. Melgar", "56465"); 72 | dataGridView1.Rows.Insert(10, "11", "Rafael", "Fernandez", "AV. Melgar", "56465"); 73 | dataGridView1.Rows.Insert(11, "12", "Rafael", "Fernandez", "AV. Melgar", "56465"); 74 | dataGridView1.Rows.Insert(12, "13", "Rafael", "Fernandez", "AV. Melgar", "56465"); 75 | dataGridView1.Rows.Insert(13, "14", "Rafael", "Fernandez", "AV. Melgar", "56465"); 76 | dataGridView1.Rows.Insert(14, "15", "Rafael", "Fernandez", "AV. Melgar", "56465"); 77 | dataGridView1.Rows.Insert(15, "16", "Rafael", "Fernandez", "AV. Melgar", "56465"); 78 | dataGridView1.Rows.Insert(16, "17", "Rafael", "Fernandez", "AV. Melgar", "56465"); 79 | dataGridView1.Rows.Insert(17, "18", "Rafael", "Fernandez", "AV. Melgar", "56465"); 80 | dataGridView1.Rows.Insert(18, "19", "Rafael", "Fernandez", "AV. Melgar", "56465"); 81 | dataGridView1.Rows.Insert(19, "20", "Rafael", "Fernandez", "AV. Melgar", "56465"); 82 | } 83 | 84 | private void dataGridView1_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) 85 | { 86 | FormMembresia frm = Owner as FormMembresia; 87 | //FormMembresia frm = new FormMembresia(); 88 | 89 | frm.txtid.Text = dataGridView1.CurrentRow.Cells[0].Value.ToString(); 90 | frm.txtnombre.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString(); 91 | frm.txtapellido.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString(); 92 | this.Close(); 93 | } 94 | 95 | 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormListaClientes.designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI 2 | { 3 | partial class FormListaClientes 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); 32 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); 33 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); 34 | this.label1 = new System.Windows.Forms.Label(); 35 | this.dataGridView1 = new System.Windows.Forms.DataGridView(); 36 | this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn(); 37 | this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 38 | this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 39 | this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 40 | this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 41 | this.BtnCerrar = new System.Windows.Forms.Button(); 42 | this.btnEditar = new System.Windows.Forms.Button(); 43 | this.button2 = new System.Windows.Forms.Button(); 44 | this.btnNuevo = new System.Windows.Forms.Button(); 45 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); 46 | this.SuspendLayout(); 47 | // 48 | // label1 49 | // 50 | this.label1.AutoSize = true; 51 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 52 | this.label1.ForeColor = System.Drawing.Color.White; 53 | this.label1.Location = new System.Drawing.Point(49, 12); 54 | this.label1.Name = "label1"; 55 | this.label1.Size = new System.Drawing.Size(123, 20); 56 | this.label1.TabIndex = 0; 57 | this.label1.Text = "Lista de clientes"; 58 | // 59 | // dataGridView1 60 | // 61 | this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 62 | | System.Windows.Forms.AnchorStyles.Left) 63 | | System.Windows.Forms.AnchorStyles.Right))); 64 | this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells; 65 | this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(61)))), ((int)(((byte)(69))))); 66 | this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None; 67 | this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal; 68 | this.dataGridView1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; 69 | dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 70 | dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 71 | dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 72 | dataGridViewCellStyle4.ForeColor = System.Drawing.Color.White; 73 | dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight; 74 | dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 75 | dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 76 | this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4; 77 | this.dataGridView1.ColumnHeadersHeight = 30; 78 | this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { 79 | this.ID, 80 | this.Column1, 81 | this.Column2, 82 | this.Column3, 83 | this.Column4}); 84 | dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 85 | dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(61)))), ((int)(((byte)(69))))); 86 | dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 87 | dataGridViewCellStyle5.ForeColor = System.Drawing.Color.Gainsboro; 88 | dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight; 89 | dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 90 | dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False; 91 | this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle5; 92 | this.dataGridView1.EnableHeadersVisualStyles = false; 93 | this.dataGridView1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 94 | this.dataGridView1.Location = new System.Drawing.Point(24, 56); 95 | this.dataGridView1.Name = "dataGridView1"; 96 | this.dataGridView1.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; 97 | dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; 98 | dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 99 | dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 100 | dataGridViewCellStyle6.ForeColor = System.Drawing.Color.PaleVioletRed; 101 | dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight; 102 | dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 103 | dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 104 | this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle6; 105 | this.dataGridView1.Size = new System.Drawing.Size(711, 377); 106 | this.dataGridView1.TabIndex = 2; 107 | this.dataGridView1.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentDoubleClick); 108 | // 109 | // ID 110 | // 111 | this.ID.HeaderText = "ID"; 112 | this.ID.Name = "ID"; 113 | this.ID.Width = 43; 114 | // 115 | // Column1 116 | // 117 | this.Column1.HeaderText = "NOMBRES"; 118 | this.Column1.Name = "Column1"; 119 | this.Column1.Width = 93; 120 | // 121 | // Column2 122 | // 123 | this.Column2.HeaderText = "APELLIDOS"; 124 | this.Column2.Name = "Column2"; 125 | this.Column2.Width = 97; 126 | // 127 | // Column3 128 | // 129 | this.Column3.HeaderText = "DIRECCION"; 130 | this.Column3.Name = "Column3"; 131 | this.Column3.Width = 97; 132 | // 133 | // Column4 134 | // 135 | this.Column4.HeaderText = "TELEFONO"; 136 | this.Column4.Name = "Column4"; 137 | this.Column4.Width = 95; 138 | // 139 | // BtnCerrar 140 | // 141 | this.BtnCerrar.Cursor = System.Windows.Forms.Cursors.Hand; 142 | this.BtnCerrar.FlatAppearance.BorderSize = 0; 143 | this.BtnCerrar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 144 | this.BtnCerrar.Image = global::COMPLETE_FLAT_UI.Properties.Resources.Close; 145 | this.BtnCerrar.Location = new System.Drawing.Point(0, 0); 146 | this.BtnCerrar.Name = "BtnCerrar"; 147 | this.BtnCerrar.Size = new System.Drawing.Size(43, 43); 148 | this.BtnCerrar.TabIndex = 3; 149 | this.BtnCerrar.UseVisualStyleBackColor = true; 150 | this.BtnCerrar.Click += new System.EventHandler(this.BtnCerrar_Click_1); 151 | // 152 | // btnEditar 153 | // 154 | this.btnEditar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 155 | this.btnEditar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 156 | this.btnEditar.Cursor = System.Windows.Forms.Cursors.Default; 157 | this.btnEditar.FlatAppearance.BorderColor = System.Drawing.Color.DimGray; 158 | this.btnEditar.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 159 | this.btnEditar.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 160 | this.btnEditar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 161 | this.btnEditar.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 162 | this.btnEditar.ForeColor = System.Drawing.Color.Silver; 163 | this.btnEditar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 164 | this.btnEditar.Location = new System.Drawing.Point(749, 92); 165 | this.btnEditar.Name = "btnEditar"; 166 | this.btnEditar.Size = new System.Drawing.Size(100, 30); 167 | this.btnEditar.TabIndex = 4; 168 | this.btnEditar.Text = "Editar"; 169 | this.btnEditar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 170 | this.btnEditar.UseVisualStyleBackColor = false; 171 | this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click); 172 | // 173 | // button2 174 | // 175 | this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 176 | this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 177 | this.button2.Cursor = System.Windows.Forms.Cursors.Default; 178 | this.button2.FlatAppearance.BorderColor = System.Drawing.Color.DimGray; 179 | this.button2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 180 | this.button2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 181 | this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 182 | this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 183 | this.button2.ForeColor = System.Drawing.Color.Silver; 184 | this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 185 | this.button2.Location = new System.Drawing.Point(749, 128); 186 | this.button2.Name = "button2"; 187 | this.button2.Size = new System.Drawing.Size(100, 30); 188 | this.button2.TabIndex = 5; 189 | this.button2.Text = "Eliminar"; 190 | this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 191 | this.button2.UseVisualStyleBackColor = false; 192 | // 193 | // btnNuevo 194 | // 195 | this.btnNuevo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 196 | this.btnNuevo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 197 | this.btnNuevo.Cursor = System.Windows.Forms.Cursors.Default; 198 | this.btnNuevo.FlatAppearance.BorderColor = System.Drawing.Color.DimGray; 199 | this.btnNuevo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 200 | this.btnNuevo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 201 | this.btnNuevo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 202 | this.btnNuevo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 203 | this.btnNuevo.ForeColor = System.Drawing.Color.Silver; 204 | this.btnNuevo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 205 | this.btnNuevo.Location = new System.Drawing.Point(749, 56); 206 | this.btnNuevo.Name = "btnNuevo"; 207 | this.btnNuevo.Size = new System.Drawing.Size(100, 30); 208 | this.btnNuevo.TabIndex = 6; 209 | this.btnNuevo.Text = "Nuevo"; 210 | this.btnNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 211 | this.btnNuevo.UseVisualStyleBackColor = false; 212 | this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click); 213 | // 214 | // FormListaClientes 215 | // 216 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 217 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 218 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 219 | this.ClientSize = new System.Drawing.Size(870, 457); 220 | this.Controls.Add(this.btnNuevo); 221 | this.Controls.Add(this.button2); 222 | this.Controls.Add(this.btnEditar); 223 | this.Controls.Add(this.BtnCerrar); 224 | this.Controls.Add(this.dataGridView1); 225 | this.Controls.Add(this.label1); 226 | this.Name = "FormListaClientes"; 227 | this.Text = "FormListaClientes"; 228 | this.Load += new System.EventHandler(this.FormListaClientes_Load); 229 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); 230 | this.ResumeLayout(false); 231 | this.PerformLayout(); 232 | 233 | } 234 | 235 | #endregion 236 | 237 | private System.Windows.Forms.Label label1; 238 | private System.Windows.Forms.DataGridView dataGridView1; 239 | private System.Windows.Forms.DataGridViewTextBoxColumn ID; 240 | private System.Windows.Forms.DataGridViewTextBoxColumn Column1; 241 | private System.Windows.Forms.DataGridViewTextBoxColumn Column2; 242 | private System.Windows.Forms.DataGridViewTextBoxColumn Column3; 243 | private System.Windows.Forms.DataGridViewTextBoxColumn Column4; 244 | private System.Windows.Forms.Button BtnCerrar; 245 | private System.Windows.Forms.Button btnEditar; 246 | private System.Windows.Forms.Button button2; 247 | private System.Windows.Forms.Button btnNuevo; 248 | } 249 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormListaClientes.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | True 122 | 123 | 124 | True 125 | 126 | 127 | True 128 | 129 | 130 | True 131 | 132 | 133 | True 134 | 135 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormLogo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace COMPLETE_FLAT_UI 12 | { 13 | public partial class FormLogo : Form 14 | { 15 | public FormLogo() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void pictureBox1_Click(object sender, EventArgs e) 21 | { 22 | 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormLogo.designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI 2 | { 3 | partial class FormLogo 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLogo)); 32 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 33 | this.label1 = new System.Windows.Forms.Label(); 34 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 35 | this.SuspendLayout(); 36 | // 37 | // pictureBox1 38 | // 39 | this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); 40 | this.pictureBox1.Location = new System.Drawing.Point(325, 119); 41 | this.pictureBox1.Name = "pictureBox1"; 42 | this.pictureBox1.Size = new System.Drawing.Size(225, 146); 43 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; 44 | this.pictureBox1.TabIndex = 0; 45 | this.pictureBox1.TabStop = false; 46 | this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); 47 | // 48 | // label1 49 | // 50 | this.label1.AutoSize = true; 51 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 52 | this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 53 | this.label1.Location = new System.Drawing.Point(286, 268); 54 | this.label1.Name = "label1"; 55 | this.label1.Size = new System.Drawing.Size(292, 39); 56 | this.label1.TabIndex = 1; 57 | this.label1.Text = "RJ Code Advance"; 58 | // 59 | // FormLogo 60 | // 61 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 62 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 63 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 64 | this.ClientSize = new System.Drawing.Size(870, 457); 65 | this.Controls.Add(this.label1); 66 | this.Controls.Add(this.pictureBox1); 67 | this.Name = "FormLogo"; 68 | this.Text = "FormLogo"; 69 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 70 | this.ResumeLayout(false); 71 | this.PerformLayout(); 72 | 73 | } 74 | 75 | #endregion 76 | 77 | private System.Windows.Forms.Label label1; 78 | private System.Windows.Forms.PictureBox pictureBox1; 79 | } 80 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormLogo.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | 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 435 | 436 | 437 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMantCliente.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Runtime.InteropServices; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | using System.Windows.Forms; 11 | 12 | namespace COMPLETE_FLAT_UI 13 | { 14 | public partial class FormMantCliente : Form 15 | { 16 | public FormMantCliente() 17 | { 18 | InitializeComponent(); 19 | } 20 | [DllImport("user32.DLL", EntryPoint = "ReleaseCapture")] 21 | private extern static void ReleaseCapture(); 22 | [DllImport("user32.DLL", EntryPoint = "SendMessage")] 23 | private extern static void SendMessage(System.IntPtr hWnd, int wMsg, int wParam, int lParam); 24 | 25 | private void BarraTitulo_MouseDown(object sender, MouseEventArgs e) 26 | { 27 | ReleaseCapture(); 28 | SendMessage(this.Handle, 0x112, 0xf012, 0); 29 | } 30 | 31 | private void BtnCerrar_Click(object sender, EventArgs e) 32 | { 33 | this.Close(); 34 | } 35 | 36 | private void btnCancelar_Click(object sender, EventArgs e) 37 | { 38 | this.Close(); 39 | } 40 | 41 | private void FormMantCliente_Load(object sender, EventArgs e) 42 | { 43 | 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMantCliente.designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI 2 | { 3 | partial class FormMantCliente 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.BarraTitulo = new System.Windows.Forms.Panel(); 32 | this.txtnombre = new System.Windows.Forms.TextBox(); 33 | this.txtapellido = new System.Windows.Forms.TextBox(); 34 | this.txtdireccion = new System.Windows.Forms.TextBox(); 35 | this.txttelefono = new System.Windows.Forms.TextBox(); 36 | this.label2 = new System.Windows.Forms.Label(); 37 | this.label1 = new System.Windows.Forms.Label(); 38 | this.label3 = new System.Windows.Forms.Label(); 39 | this.label4 = new System.Windows.Forms.Label(); 40 | this.button1 = new System.Windows.Forms.Button(); 41 | this.btnCancelar = new System.Windows.Forms.Button(); 42 | this.label5 = new System.Windows.Forms.Label(); 43 | this.txtid = new System.Windows.Forms.TextBox(); 44 | this.label6 = new System.Windows.Forms.Label(); 45 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 46 | this.BtnCerrar = new System.Windows.Forms.Button(); 47 | this.BarraTitulo.SuspendLayout(); 48 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 49 | this.SuspendLayout(); 50 | // 51 | // BarraTitulo 52 | // 53 | this.BarraTitulo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 54 | this.BarraTitulo.Controls.Add(this.label6); 55 | this.BarraTitulo.Controls.Add(this.BtnCerrar); 56 | this.BarraTitulo.Dock = System.Windows.Forms.DockStyle.Top; 57 | this.BarraTitulo.Location = new System.Drawing.Point(0, 0); 58 | this.BarraTitulo.Name = "BarraTitulo"; 59 | this.BarraTitulo.Size = new System.Drawing.Size(577, 38); 60 | this.BarraTitulo.TabIndex = 2; 61 | this.BarraTitulo.MouseDown += new System.Windows.Forms.MouseEventHandler(this.BarraTitulo_MouseDown); 62 | // 63 | // txtnombre 64 | // 65 | this.txtnombre.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 66 | this.txtnombre.Location = new System.Drawing.Point(117, 98); 67 | this.txtnombre.Name = "txtnombre"; 68 | this.txtnombre.Size = new System.Drawing.Size(244, 23); 69 | this.txtnombre.TabIndex = 3; 70 | // 71 | // txtapellido 72 | // 73 | this.txtapellido.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 74 | this.txtapellido.Location = new System.Drawing.Point(117, 127); 75 | this.txtapellido.Name = "txtapellido"; 76 | this.txtapellido.Size = new System.Drawing.Size(244, 23); 77 | this.txtapellido.TabIndex = 4; 78 | // 79 | // txtdireccion 80 | // 81 | this.txtdireccion.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 82 | this.txtdireccion.Location = new System.Drawing.Point(117, 156); 83 | this.txtdireccion.Name = "txtdireccion"; 84 | this.txtdireccion.Size = new System.Drawing.Size(244, 23); 85 | this.txtdireccion.TabIndex = 5; 86 | // 87 | // txttelefono 88 | // 89 | this.txttelefono.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 90 | this.txttelefono.Location = new System.Drawing.Point(117, 185); 91 | this.txttelefono.Name = "txttelefono"; 92 | this.txttelefono.Size = new System.Drawing.Size(244, 23); 93 | this.txttelefono.TabIndex = 6; 94 | // 95 | // label2 96 | // 97 | this.label2.AutoSize = true; 98 | this.label2.Font = new System.Drawing.Font("DFMincho-W5", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 99 | this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); 100 | this.label2.Location = new System.Drawing.Point(25, 101); 101 | this.label2.Name = "label2"; 102 | this.label2.Size = new System.Drawing.Size(68, 16); 103 | this.label2.TabIndex = 7; 104 | this.label2.Text = "Nombres:"; 105 | // 106 | // label1 107 | // 108 | this.label1.AutoSize = true; 109 | this.label1.Font = new System.Drawing.Font("DFMincho-W5", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 110 | this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); 111 | this.label1.Location = new System.Drawing.Point(25, 130); 112 | this.label1.Name = "label1"; 113 | this.label1.Size = new System.Drawing.Size(69, 16); 114 | this.label1.TabIndex = 8; 115 | this.label1.Text = "Apellidos:"; 116 | // 117 | // label3 118 | // 119 | this.label3.AutoSize = true; 120 | this.label3.Font = new System.Drawing.Font("DFMincho-W5", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 121 | this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); 122 | this.label3.Location = new System.Drawing.Point(25, 159); 123 | this.label3.Name = "label3"; 124 | this.label3.Size = new System.Drawing.Size(71, 16); 125 | this.label3.TabIndex = 9; 126 | this.label3.Text = "Direccion:"; 127 | // 128 | // label4 129 | // 130 | this.label4.AutoSize = true; 131 | this.label4.Font = new System.Drawing.Font("DFMincho-W5", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 132 | this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); 133 | this.label4.Location = new System.Drawing.Point(25, 188); 134 | this.label4.Name = "label4"; 135 | this.label4.Size = new System.Drawing.Size(66, 16); 136 | this.label4.TabIndex = 10; 137 | this.label4.Text = "Teléfono:"; 138 | // 139 | // button1 140 | // 141 | this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(61)))), ((int)(((byte)(92))))); 142 | this.button1.FlatAppearance.BorderSize = 0; 143 | this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 144 | this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 145 | this.button1.ForeColor = System.Drawing.Color.White; 146 | this.button1.Location = new System.Drawing.Point(185, 234); 147 | this.button1.Name = "button1"; 148 | this.button1.Size = new System.Drawing.Size(100, 35); 149 | this.button1.TabIndex = 11; 150 | this.button1.Text = "Guardar"; 151 | this.button1.UseVisualStyleBackColor = false; 152 | // 153 | // btnCancelar 154 | // 155 | this.btnCancelar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(61)))), ((int)(((byte)(92))))); 156 | this.btnCancelar.FlatAppearance.BorderSize = 0; 157 | this.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 158 | this.btnCancelar.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 159 | this.btnCancelar.ForeColor = System.Drawing.Color.White; 160 | this.btnCancelar.Location = new System.Drawing.Point(313, 234); 161 | this.btnCancelar.Name = "btnCancelar"; 162 | this.btnCancelar.Size = new System.Drawing.Size(100, 35); 163 | this.btnCancelar.TabIndex = 12; 164 | this.btnCancelar.Text = "Cancelar"; 165 | this.btnCancelar.UseVisualStyleBackColor = false; 166 | this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click); 167 | // 168 | // label5 169 | // 170 | this.label5.AutoSize = true; 171 | this.label5.Font = new System.Drawing.Font("DFMincho-W5", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 172 | this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); 173 | this.label5.Location = new System.Drawing.Point(25, 74); 174 | this.label5.Name = "label5"; 175 | this.label5.Size = new System.Drawing.Size(21, 16); 176 | this.label5.TabIndex = 14; 177 | this.label5.Text = "ID"; 178 | // 179 | // txtid 180 | // 181 | this.txtid.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 182 | this.txtid.Location = new System.Drawing.Point(117, 71); 183 | this.txtid.Name = "txtid"; 184 | this.txtid.ReadOnly = true; 185 | this.txtid.Size = new System.Drawing.Size(244, 23); 186 | this.txtid.TabIndex = 13; 187 | // 188 | // label6 189 | // 190 | this.label6.AutoSize = true; 191 | this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 192 | this.label6.ForeColor = System.Drawing.Color.White; 193 | this.label6.Location = new System.Drawing.Point(236, 13); 194 | this.label6.Name = "label6"; 195 | this.label6.Size = new System.Drawing.Size(87, 17); 196 | this.label6.TabIndex = 15; 197 | this.label6.Text = "Form Cliente"; 198 | // 199 | // pictureBox1 200 | // 201 | this.pictureBox1.Image = global::COMPLETE_FLAT_UI.Properties.Resources.icono_cliente; 202 | this.pictureBox1.Location = new System.Drawing.Point(401, 55); 203 | this.pictureBox1.Name = "pictureBox1"; 204 | this.pictureBox1.Size = new System.Drawing.Size(138, 153); 205 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; 206 | this.pictureBox1.TabIndex = 15; 207 | this.pictureBox1.TabStop = false; 208 | // 209 | // BtnCerrar 210 | // 211 | this.BtnCerrar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 212 | this.BtnCerrar.Cursor = System.Windows.Forms.Cursors.Hand; 213 | this.BtnCerrar.FlatAppearance.BorderSize = 0; 214 | this.BtnCerrar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 215 | this.BtnCerrar.Image = global::COMPLETE_FLAT_UI.Properties.Resources.Close; 216 | this.BtnCerrar.Location = new System.Drawing.Point(539, 0); 217 | this.BtnCerrar.Name = "BtnCerrar"; 218 | this.BtnCerrar.Size = new System.Drawing.Size(38, 38); 219 | this.BtnCerrar.TabIndex = 4; 220 | this.BtnCerrar.UseVisualStyleBackColor = true; 221 | this.BtnCerrar.Click += new System.EventHandler(this.BtnCerrar_Click); 222 | // 223 | // FormMantCliente 224 | // 225 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 226 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 227 | this.ClientSize = new System.Drawing.Size(577, 294); 228 | this.Controls.Add(this.pictureBox1); 229 | this.Controls.Add(this.label5); 230 | this.Controls.Add(this.txtid); 231 | this.Controls.Add(this.btnCancelar); 232 | this.Controls.Add(this.button1); 233 | this.Controls.Add(this.label4); 234 | this.Controls.Add(this.label3); 235 | this.Controls.Add(this.label1); 236 | this.Controls.Add(this.label2); 237 | this.Controls.Add(this.txttelefono); 238 | this.Controls.Add(this.txtdireccion); 239 | this.Controls.Add(this.txtapellido); 240 | this.Controls.Add(this.txtnombre); 241 | this.Controls.Add(this.BarraTitulo); 242 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 243 | this.Name = "FormMantCliente"; 244 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 245 | this.Text = "FormMantCliente"; 246 | this.Load += new System.EventHandler(this.FormMantCliente_Load); 247 | this.BarraTitulo.ResumeLayout(false); 248 | this.BarraTitulo.PerformLayout(); 249 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 250 | this.ResumeLayout(false); 251 | this.PerformLayout(); 252 | 253 | } 254 | 255 | #endregion 256 | 257 | private System.Windows.Forms.Panel BarraTitulo; 258 | private System.Windows.Forms.Button BtnCerrar; 259 | private System.Windows.Forms.Label label2; 260 | private System.Windows.Forms.Label label1; 261 | private System.Windows.Forms.Label label3; 262 | private System.Windows.Forms.Label label4; 263 | private System.Windows.Forms.Button button1; 264 | private System.Windows.Forms.Button btnCancelar; 265 | public System.Windows.Forms.TextBox txtnombre; 266 | public System.Windows.Forms.TextBox txtapellido; 267 | public System.Windows.Forms.TextBox txtdireccion; 268 | public System.Windows.Forms.TextBox txttelefono; 269 | private System.Windows.Forms.Label label5; 270 | public System.Windows.Forms.TextBox txtid; 271 | private System.Windows.Forms.Label label6; 272 | private System.Windows.Forms.PictureBox pictureBox1; 273 | 274 | } 275 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMantCliente.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMembresia.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace COMPLETE_FLAT_UI 12 | { 13 | public partial class FormMembresia : Form 14 | { 15 | public FormMembresia() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void btnBuscar_Click(object sender, EventArgs e) 21 | { 22 | FormListaClientes hijo = new FormListaClientes(); 23 | AddOwnedForm(hijo); 24 | hijo.FormBorderStyle = FormBorderStyle.None; 25 | hijo.TopLevel = false; 26 | hijo.Dock = DockStyle.Fill; 27 | this.Controls.Add(hijo); 28 | this.Tag = hijo; 29 | hijo.BringToFront(); 30 | 31 | hijo.Show(); 32 | } 33 | 34 | private void BtnCerrar_Click(object sender, EventArgs e) 35 | { 36 | this.Close(); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMembresia.designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI 2 | { 3 | partial class FormMembresia 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.label5 = new System.Windows.Forms.Label(); 32 | this.txtid = new System.Windows.Forms.TextBox(); 33 | this.label1 = new System.Windows.Forms.Label(); 34 | this.label2 = new System.Windows.Forms.Label(); 35 | this.txtapellido = new System.Windows.Forms.TextBox(); 36 | this.txtnombre = new System.Windows.Forms.TextBox(); 37 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 38 | this.btnBuscar = new System.Windows.Forms.Button(); 39 | this.BtnCerrar = new System.Windows.Forms.Button(); 40 | this.groupBox1.SuspendLayout(); 41 | this.SuspendLayout(); 42 | // 43 | // label5 44 | // 45 | this.label5.AutoSize = true; 46 | this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 47 | this.label5.ForeColor = System.Drawing.Color.LightGray; 48 | this.label5.Location = new System.Drawing.Point(23, 25); 49 | this.label5.Name = "label5"; 50 | this.label5.Size = new System.Drawing.Size(21, 17); 51 | this.label5.TabIndex = 20; 52 | this.label5.Text = "ID"; 53 | // 54 | // txtid 55 | // 56 | this.txtid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 57 | | System.Windows.Forms.AnchorStyles.Right))); 58 | this.txtid.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 59 | this.txtid.Location = new System.Drawing.Point(115, 19); 60 | this.txtid.Name = "txtid"; 61 | this.txtid.ReadOnly = true; 62 | this.txtid.Size = new System.Drawing.Size(580, 23); 63 | this.txtid.TabIndex = 19; 64 | // 65 | // label1 66 | // 67 | this.label1.AutoSize = true; 68 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 69 | this.label1.ForeColor = System.Drawing.Color.LightGray; 70 | this.label1.Location = new System.Drawing.Point(23, 81); 71 | this.label1.Name = "label1"; 72 | this.label1.Size = new System.Drawing.Size(69, 17); 73 | this.label1.TabIndex = 18; 74 | this.label1.Text = "Apellidos:"; 75 | // 76 | // label2 77 | // 78 | this.label2.AutoSize = true; 79 | this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 80 | this.label2.ForeColor = System.Drawing.Color.LightGray; 81 | this.label2.Location = new System.Drawing.Point(23, 51); 82 | this.label2.Name = "label2"; 83 | this.label2.Size = new System.Drawing.Size(69, 17); 84 | this.label2.TabIndex = 17; 85 | this.label2.Text = "Nombres:"; 86 | // 87 | // txtapellido 88 | // 89 | this.txtapellido.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 90 | | System.Windows.Forms.AnchorStyles.Right))); 91 | this.txtapellido.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 92 | this.txtapellido.Location = new System.Drawing.Point(115, 78); 93 | this.txtapellido.Name = "txtapellido"; 94 | this.txtapellido.Size = new System.Drawing.Size(580, 23); 95 | this.txtapellido.TabIndex = 16; 96 | // 97 | // txtnombre 98 | // 99 | this.txtnombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 100 | | System.Windows.Forms.AnchorStyles.Right))); 101 | this.txtnombre.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 102 | this.txtnombre.Location = new System.Drawing.Point(115, 48); 103 | this.txtnombre.Name = "txtnombre"; 104 | this.txtnombre.Size = new System.Drawing.Size(580, 23); 105 | this.txtnombre.TabIndex = 15; 106 | // 107 | // groupBox1 108 | // 109 | this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 110 | | System.Windows.Forms.AnchorStyles.Right))); 111 | this.groupBox1.Controls.Add(this.btnBuscar); 112 | this.groupBox1.Controls.Add(this.txtid); 113 | this.groupBox1.Controls.Add(this.label5); 114 | this.groupBox1.Controls.Add(this.txtnombre); 115 | this.groupBox1.Controls.Add(this.txtapellido); 116 | this.groupBox1.Controls.Add(this.label1); 117 | this.groupBox1.Controls.Add(this.label2); 118 | this.groupBox1.ForeColor = System.Drawing.Color.White; 119 | this.groupBox1.Location = new System.Drawing.Point(27, 44); 120 | this.groupBox1.Name = "groupBox1"; 121 | this.groupBox1.Size = new System.Drawing.Size(810, 120); 122 | this.groupBox1.TabIndex = 21; 123 | this.groupBox1.TabStop = false; 124 | this.groupBox1.Text = "CLIENTE"; 125 | // 126 | // btnBuscar 127 | // 128 | this.btnBuscar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 129 | this.btnBuscar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 130 | this.btnBuscar.Cursor = System.Windows.Forms.Cursors.Default; 131 | this.btnBuscar.FlatAppearance.BorderColor = System.Drawing.Color.DimGray; 132 | this.btnBuscar.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 133 | this.btnBuscar.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(45)))), ((int)(((byte)(53))))); 134 | this.btnBuscar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 135 | this.btnBuscar.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 136 | this.btnBuscar.ForeColor = System.Drawing.Color.Silver; 137 | this.btnBuscar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 138 | this.btnBuscar.Location = new System.Drawing.Point(713, 19); 139 | this.btnBuscar.Name = "btnBuscar"; 140 | this.btnBuscar.Size = new System.Drawing.Size(77, 65); 141 | this.btnBuscar.TabIndex = 21; 142 | this.btnBuscar.Text = "Buscar"; 143 | this.btnBuscar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 144 | this.btnBuscar.UseVisualStyleBackColor = false; 145 | this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click); 146 | // 147 | // BtnCerrar 148 | // 149 | this.BtnCerrar.Cursor = System.Windows.Forms.Cursors.Hand; 150 | this.BtnCerrar.FlatAppearance.BorderSize = 0; 151 | this.BtnCerrar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 152 | this.BtnCerrar.Image = global::COMPLETE_FLAT_UI.Properties.Resources.Close; 153 | this.BtnCerrar.Location = new System.Drawing.Point(0, 0); 154 | this.BtnCerrar.Name = "BtnCerrar"; 155 | this.BtnCerrar.Size = new System.Drawing.Size(43, 43); 156 | this.BtnCerrar.TabIndex = 22; 157 | this.BtnCerrar.UseVisualStyleBackColor = true; 158 | this.BtnCerrar.Click += new System.EventHandler(this.BtnCerrar_Click); 159 | // 160 | // FormMembresia 161 | // 162 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 163 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 164 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(69)))), ((int)(((byte)(76))))); 165 | this.ClientSize = new System.Drawing.Size(870, 457); 166 | this.Controls.Add(this.BtnCerrar); 167 | this.Controls.Add(this.groupBox1); 168 | this.Name = "FormMembresia"; 169 | this.Text = "FormMembresia"; 170 | this.groupBox1.ResumeLayout(false); 171 | this.groupBox1.PerformLayout(); 172 | this.ResumeLayout(false); 173 | 174 | } 175 | 176 | #endregion 177 | 178 | private System.Windows.Forms.Label label5; 179 | public System.Windows.Forms.TextBox txtid; 180 | private System.Windows.Forms.Label label1; 181 | private System.Windows.Forms.Label label2; 182 | public System.Windows.Forms.TextBox txtapellido; 183 | public System.Windows.Forms.TextBox txtnombre; 184 | private System.Windows.Forms.GroupBox groupBox1; 185 | private System.Windows.Forms.Button btnBuscar; 186 | private System.Windows.Forms.Button BtnCerrar; 187 | } 188 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMembresia.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/FormMenuPrincipal.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Reflection; 8 | using System.Runtime.InteropServices; 9 | using System.Text; 10 | using System.Threading.Tasks; 11 | using System.Windows.Forms; 12 | 13 | namespace COMPLETE_FLAT_UI 14 | { 15 | public partial class FormMenuPrincipal : Form 16 | { 17 | //Constructor 18 | public FormMenuPrincipal() 19 | { 20 | InitializeComponent(); 21 | //Estas lineas eliminan los parpadeos del formulario o controles en la interfaz grafica (Pero no en un 100%) 22 | this.SetStyle(ControlStyles.ResizeRedraw, true); 23 | this.DoubleBuffered = true; 24 | } 25 | //METODO PARA REDIMENCIONAR/CAMBIAR TAMAÑO A FORMULARIO TIEMPO DE EJECUCION ---------------------------------------------------------- 26 | private int tolerance = 15; 27 | private const int WM_NCHITTEST = 132; 28 | private const int HTBOTTOMRIGHT = 17; 29 | private Rectangle sizeGripRectangle; 30 | 31 | protected override void WndProc(ref Message m) 32 | { 33 | switch (m.Msg) 34 | { 35 | case WM_NCHITTEST: 36 | base.WndProc(ref m); 37 | var hitPoint = this.PointToClient(new Point(m.LParam.ToInt32() & 0xffff, m.LParam.ToInt32() >> 16)); 38 | if (sizeGripRectangle.Contains(hitPoint)) 39 | m.Result = new IntPtr(HTBOTTOMRIGHT); 40 | break; 41 | default: 42 | base.WndProc(ref m); 43 | break; 44 | } 45 | } 46 | //----------------DIBUJAR RECTANGULO / EXCLUIR ESQUINA PANEL 47 | protected override void OnSizeChanged(EventArgs e) 48 | { 49 | base.OnSizeChanged(e); 50 | var region = new Region(new Rectangle(0, 0, this.ClientRectangle.Width, this.ClientRectangle.Height)); 51 | 52 | sizeGripRectangle = new Rectangle(this.ClientRectangle.Width - tolerance, this.ClientRectangle.Height - tolerance, tolerance, tolerance); 53 | 54 | region.Exclude(sizeGripRectangle); 55 | this.panelContenedorPrincipal.Region = region; 56 | this.Invalidate(); 57 | } 58 | //----------------COLOR Y GRIP DE RECTANGULO INFERIOR 59 | protected override void OnPaint(PaintEventArgs e) 60 | { 61 | 62 | SolidBrush blueBrush = new SolidBrush(Color.FromArgb(55, 61, 69)); 63 | e.Graphics.FillRectangle(blueBrush, sizeGripRectangle); 64 | 65 | base.OnPaint(e); 66 | ControlPaint.DrawSizeGrip(e.Graphics, Color.Transparent, sizeGripRectangle); 67 | } 68 | 69 | //METODO PARA ARRASTRAR EL FORMULARIO--------------------------------------------------------------------- 70 | [DllImport("user32.DLL", EntryPoint = "ReleaseCapture")] 71 | private extern static void ReleaseCapture(); 72 | 73 | [DllImport("user32.DLL", EntryPoint = "SendMessage")] 74 | private extern static void SendMessage(System.IntPtr hWnd, int wMsg, int wParam, int lParam); 75 | 76 | private void PanelBarraTitulo_MouseDown(object sender, MouseEventArgs e) 77 | { 78 | ReleaseCapture(); 79 | SendMessage(this.Handle, 0x112, 0xf012, 0); 80 | } 81 | //METODOS PARA CERRAR,MAXIMIZAR, MINIMIZAR FORMULARIO------------------------------------------------------ 82 | int lx, ly; 83 | int sw, sh; 84 | private void btnMaximizar_Click(object sender, EventArgs e) 85 | { 86 | lx = this.Location.X; 87 | ly = this.Location.Y; 88 | sw = this.Size.Width; 89 | sh = this.Size.Height; 90 | this.Size = Screen.PrimaryScreen.WorkingArea.Size; 91 | this.Location = Screen.PrimaryScreen.WorkingArea.Location; 92 | btnMaximizar.Visible = false; 93 | btnNormal.Visible = true; 94 | 95 | } 96 | 97 | private void btnNormal_Click(object sender, EventArgs e) 98 | { 99 | this.Size = new Size(sw, sh); 100 | this.Location = new Point(lx, ly); 101 | btnNormal.Visible = false; 102 | btnMaximizar.Visible = true; 103 | } 104 | 105 | private void btnMinimizar_Click(object sender, EventArgs e) 106 | { 107 | this.WindowState = FormWindowState.Minimized; 108 | } 109 | 110 | private void btnCerrar_Click(object sender, EventArgs e) 111 | { 112 | if (MessageBox.Show("¿Está seguro de cerrar?", "Alerta¡¡", MessageBoxButtons.YesNo) == DialogResult.Yes) 113 | { 114 | Application.Exit(); 115 | } 116 | } 117 | 118 | private void btnSalir_Click(object sender, EventArgs e) 119 | { 120 | if (MessageBox.Show("¿Está seguro de cerrar?", "Alerta¡¡", MessageBoxButtons.YesNo) == DialogResult.Yes) 121 | { 122 | Application.Exit(); 123 | } 124 | } 125 | 126 | //METODOS PARA ANIMACION DE MENU SLIDING-- 127 | private void btnMenu_Click(object sender, EventArgs e) 128 | { 129 | //-------CON EFECTO SLIDING 130 | if (panelMenu.Width == 230) 131 | { 132 | this.tmContraerMenu.Start(); 133 | } 134 | else if (panelMenu.Width == 55) 135 | { 136 | this.tmExpandirMenu.Start(); 137 | } 138 | 139 | //-------SIN EFECTO 140 | //if (panelMenu.Width == 55) 141 | //{ 142 | // panelMenu.Width = 230; 143 | //} 144 | //else 145 | 146 | // panelMenu.Width = 55; 147 | } 148 | 149 | private void tmExpandirMenu_Tick(object sender, EventArgs e) 150 | { 151 | if (panelMenu.Width >= 230) 152 | this.tmExpandirMenu.Stop(); 153 | else 154 | panelMenu.Width = panelMenu.Width + 5; 155 | 156 | } 157 | 158 | private void tmContraerMenu_Tick(object sender, EventArgs e) 159 | { 160 | if (panelMenu.Width <= 55) 161 | this.tmContraerMenu.Stop(); 162 | else 163 | panelMenu.Width = panelMenu.Width - 5; 164 | } 165 | 166 | //METODO PARA ABRIR FORM DENTRO DE PANEL----------------------------------------------------- 167 | private void AbrirFormEnPanel(object formHijo) 168 | { 169 | if (this.panelContenedorForm.Controls.Count > 0) 170 | this.panelContenedorForm.Controls.RemoveAt(0); 171 | Form fh = formHijo as Form; 172 | fh.TopLevel = false; 173 | fh.FormBorderStyle = FormBorderStyle.None; 174 | fh.Dock = DockStyle.Fill; 175 | this.panelContenedorForm.Controls.Add(fh); 176 | this.panelContenedorForm.Tag = fh; 177 | fh.Show(); 178 | } 179 | //METODO PARA MOSTRAR FORMULARIO DE LOGO Al INICIAR ---------------------------------------------------------- 180 | private void MostrarFormLogo() 181 | { 182 | AbrirFormEnPanel(new FormLogo()); 183 | } 184 | 185 | private void FormMenuPrincipal_Load(object sender, EventArgs e) 186 | { 187 | MostrarFormLogo(); 188 | } 189 | //METODO PARA MOSTRAR FORMULARIO DE LOGO Al CERRAR OTROS FORM ---------------------------------------------------------- 190 | private void MostrarFormLogoAlCerrarForms(object sender, FormClosedEventArgs e) 191 | { 192 | MostrarFormLogo(); 193 | } 194 | //METODOS PARA ABRIR OTROS FORMULARIOS Y MOSTRAR FORM DE LOGO Al CERRAR ---------------------------------------------------------- 195 | private void btnListaClientes_Click(object sender, EventArgs e) 196 | { 197 | FormListaClientes fm = new FormListaClientes(); 198 | fm.FormClosed += new FormClosedEventHandler(MostrarFormLogoAlCerrarForms); 199 | AbrirFormEnPanel(fm); 200 | } 201 | 202 | private void btnMembresia_Click(object sender, EventArgs e) 203 | { 204 | FormMembresia frm = new FormMembresia(); 205 | frm.FormClosed += new FormClosedEventHandler(MostrarFormLogoAlCerrarForms); 206 | AbrirFormEnPanel(frm); 207 | } 208 | //METODO PARA HORA Y FECHA ACTUAL ---------------------------------------------------------- 209 | private void tmFechaHora_Tick(object sender, EventArgs e) 210 | { 211 | lbFecha.Text = DateTime.Now.ToLongDateString(); 212 | lblHora.Text = DateTime.Now.ToString("HH:mm:ssss"); 213 | } 214 | 215 | 216 | private void button5_Click(object sender, EventArgs e) 217 | { 218 | AbrirFormEnPanel(new Form1()); 219 | } 220 | 221 | 222 | 223 | } 224 | } 225 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace COMPLETE_FLAT_UI 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Punto de entrada principal para la aplicación. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new FormMenuPrincipal()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general sobre un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos atributos para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("COMPLETE_FLAT_UI")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("COMPLETE_FLAT_UI")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible como false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si necesita obtener acceso a un tipo de este ensamblado desde 19 | // COM, establezca el atributo ComVisible como true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como identificador de typelib si este proyecto se expone a COM 23 | [assembly: Guid("36fe0634-201d-4dfc-aa39-5661b8f75f93")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/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 | // se vuelve a generar el código. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace COMPLETE_FLAT_UI.Properties { 12 | using System; 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 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Devuelve la instancia de ResourceManager almacenada en caché utilizada por esta clase. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("COMPLETE_FLAT_UI.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Reemplaza la propiedad CurrentUICulture del subproceso actual para todas las 51 | /// búsquedas de recursos mediante esta clase de recurso fuertemente tipado. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap APs { 67 | get { 68 | object obj = ResourceManager.GetObject("APs", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap Close { 77 | get { 78 | object obj = ResourceManager.GetObject("Close", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap Dashboard { 87 | get { 88 | object obj = ResourceManager.GetObject("Dashboard", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap icono_cliente { 97 | get { 98 | object obj = ResourceManager.GetObject("icono-cliente", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 105 | /// 106 | internal static System.Drawing.Bitmap logoUI { 107 | get { 108 | object obj = ResourceManager.GetObject("logoUI", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 115 | /// 116 | internal static System.Drawing.Bitmap logoUI2 { 117 | get { 118 | object obj = ResourceManager.GetObject("logoUI2", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 125 | /// 126 | internal static System.Drawing.Bitmap maximize { 127 | get { 128 | object obj = ResourceManager.GetObject("maximize", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 135 | /// 136 | internal static System.Drawing.Bitmap maximize2 { 137 | get { 138 | object obj = ResourceManager.GetObject("maximize2", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | 143 | /// 144 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 145 | /// 146 | internal static System.Drawing.Bitmap maximize3 { 147 | get { 148 | object obj = ResourceManager.GetObject("maximize3", resourceCulture); 149 | return ((System.Drawing.Bitmap)(obj)); 150 | } 151 | } 152 | 153 | /// 154 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 155 | /// 156 | internal static System.Drawing.Bitmap Membresia { 157 | get { 158 | object obj = ResourceManager.GetObject("Membresia", resourceCulture); 159 | return ((System.Drawing.Bitmap)(obj)); 160 | } 161 | } 162 | 163 | /// 164 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 165 | /// 166 | internal static System.Drawing.Bitmap menu { 167 | get { 168 | object obj = ResourceManager.GetObject("menu", resourceCulture); 169 | return ((System.Drawing.Bitmap)(obj)); 170 | } 171 | } 172 | 173 | /// 174 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 175 | /// 176 | internal static System.Drawing.Bitmap menu2 { 177 | get { 178 | object obj = ResourceManager.GetObject("menu2", resourceCulture); 179 | return ((System.Drawing.Bitmap)(obj)); 180 | } 181 | } 182 | 183 | /// 184 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 185 | /// 186 | internal static System.Drawing.Bitmap Minimize { 187 | get { 188 | object obj = ResourceManager.GetObject("Minimize", resourceCulture); 189 | return ((System.Drawing.Bitmap)(obj)); 190 | } 191 | } 192 | 193 | /// 194 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 195 | /// 196 | internal static System.Drawing.Bitmap Minimize1 { 197 | get { 198 | object obj = ResourceManager.GetObject("Minimize1", resourceCulture); 199 | return ((System.Drawing.Bitmap)(obj)); 200 | } 201 | } 202 | 203 | /// 204 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 205 | /// 206 | internal static System.Drawing.Bitmap new_logo { 207 | get { 208 | object obj = ResourceManager.GetObject("new logo", resourceCulture); 209 | return ((System.Drawing.Bitmap)(obj)); 210 | } 211 | } 212 | 213 | /// 214 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 215 | /// 216 | internal static System.Drawing.Bitmap new_logo1 { 217 | get { 218 | object obj = ResourceManager.GetObject("new logo1", resourceCulture); 219 | return ((System.Drawing.Bitmap)(obj)); 220 | } 221 | } 222 | 223 | /// 224 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 225 | /// 226 | internal static System.Drawing.Bitmap new_logo2 { 227 | get { 228 | object obj = ResourceManager.GetObject("new logo2", resourceCulture); 229 | return ((System.Drawing.Bitmap)(obj)); 230 | } 231 | } 232 | 233 | /// 234 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 235 | /// 236 | internal static System.Drawing.Bitmap new_logo3 { 237 | get { 238 | object obj = ResourceManager.GetObject("new logo3", resourceCulture); 239 | return ((System.Drawing.Bitmap)(obj)); 240 | } 241 | } 242 | 243 | /// 244 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 245 | /// 246 | internal static System.Drawing.Bitmap new_logo4 { 247 | get { 248 | object obj = ResourceManager.GetObject("new logo4", resourceCulture); 249 | return ((System.Drawing.Bitmap)(obj)); 250 | } 251 | } 252 | 253 | /// 254 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 255 | /// 256 | internal static System.Drawing.Bitmap new_logo5 { 257 | get { 258 | object obj = ResourceManager.GetObject("new logo5", resourceCulture); 259 | return ((System.Drawing.Bitmap)(obj)); 260 | } 261 | } 262 | 263 | /// 264 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 265 | /// 266 | internal static System.Drawing.Bitmap Normal { 267 | get { 268 | object obj = ResourceManager.GetObject("Normal", resourceCulture); 269 | return ((System.Drawing.Bitmap)(obj)); 270 | } 271 | } 272 | 273 | /// 274 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 275 | /// 276 | internal static System.Drawing.Bitmap perfil { 277 | get { 278 | object obj = ResourceManager.GetObject("perfil", resourceCulture); 279 | return ((System.Drawing.Bitmap)(obj)); 280 | } 281 | } 282 | 283 | /// 284 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 285 | /// 286 | internal static System.Drawing.Bitmap Planes { 287 | get { 288 | object obj = ResourceManager.GetObject("Planes", resourceCulture); 289 | return ((System.Drawing.Bitmap)(obj)); 290 | } 291 | } 292 | 293 | /// 294 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 295 | /// 296 | internal static System.Drawing.Bitmap satellite_dish { 297 | get { 298 | object obj = ResourceManager.GetObject("satellite-dish", resourceCulture); 299 | return ((System.Drawing.Bitmap)(obj)); 300 | } 301 | } 302 | 303 | /// 304 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 305 | /// 306 | internal static System.Drawing.Bitmap satellite_dish__1_ { 307 | get { 308 | object obj = ResourceManager.GetObject("satellite-dish (1)", resourceCulture); 309 | return ((System.Drawing.Bitmap)(obj)); 310 | } 311 | } 312 | 313 | /// 314 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 315 | /// 316 | internal static System.Drawing.Bitmap satellite_dish__1_1 { 317 | get { 318 | object obj = ResourceManager.GetObject("satellite-dish (1)1", resourceCulture); 319 | return ((System.Drawing.Bitmap)(obj)); 320 | } 321 | } 322 | 323 | /// 324 | /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. 325 | /// 326 | internal static System.Drawing.Bitmap shut_down { 327 | get { 328 | object obj = ResourceManager.GetObject("shut-down", resourceCulture); 329 | return ((System.Drawing.Bitmap)(obj)); 330 | } 331 | } 332 | } 333 | } 334 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\maximize3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\Planes.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\new logo5.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\satellite-dish (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\Resources\perfil.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\Resources\logoUI.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\Resources\menu2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\Resources\Normal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\Resources\Membresia.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\Resources\satellite-dish (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | 152 | ..\Resources\new logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 153 | 154 | 155 | ..\Resources\Minimize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 156 | 157 | 158 | ..\Resources\new logo2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 159 | 160 | 161 | ..\Resources\maximize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 162 | 163 | 164 | ..\Resources\Dashboard.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 165 | 166 | 167 | ..\Resources\icono-cliente.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 168 | 169 | 170 | ..\Resources\Minimize1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 171 | 172 | 173 | ..\Resources\Close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 174 | 175 | 176 | ..\Resources\new logo3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 177 | 178 | 179 | ..\Resources\new logo1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 180 | 181 | 182 | ..\Resources\satellite-dish.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 183 | 184 | 185 | ..\Resources\maximize2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 186 | 187 | 188 | ..\Resources\shut-down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 189 | 190 | 191 | ..\Resources\new logo4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 192 | 193 | 194 | ..\Resources\APs.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 195 | 196 | 197 | ..\Resources\menu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 198 | 199 | 200 | ..\Resources\logoUI2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 201 | 202 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/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 COMPLETE_FLAT_UI.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 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/APs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/APs.PNG -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Close.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Dashboard.PNG -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Membresia.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Membresia.PNG -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Minimize.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Minimize1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Minimize1.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Normal.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/Planes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/Planes.PNG -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/icono-cliente.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/icono-cliente.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/logoUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/logoUI.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/logoUI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/logoUI2.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/maximize.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/maximize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/maximize2.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/maximize3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/maximize3.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/menu.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/menu2.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo1.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo2.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo3.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo4.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/new logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/new logo5.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/perfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/perfil.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/satellite-dish (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/satellite-dish (1).png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/satellite-dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/satellite-dish.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/Resources/shut-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/Resources/shut-down.png -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.application: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | i0Zx7ybb6qXPLAc+7t2430f6w/FIeo11j161oFrF1EQ= 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.exe -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 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 | +NbNpURsfmPNnB4jUOJYSeWur7pWuOfH9vxZPBaS128= 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | rl5/qDc7Jz+tB+BIbOv9iMGPlRe6YJwrjmU09dnlPcs= 63 | 64 | 65 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.pdb -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.vshost.application: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | i0Zx7ybb6qXPLAc+7t2430f6w/FIeo11j161oFrF1EQ= 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.vshost.exe -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/COMPLETE_FLAT_UI.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 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 | +NbNpURsfmPNnB4jUOJYSeWur7pWuOfH9vxZPBaS128= 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | rl5/qDc7Jz+tB+BIbOv9iMGPlRe6YJwrjmU09dnlPcs= 63 | 64 | 65 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/bin/Debug/app.publish/COMPLETE_FLAT_UI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/bin/Debug/app.publish/COMPLETE_FLAT_UI.exe -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.Form1.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormListaClientes.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormListaClientes.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormLogo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormLogo.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMantCliente.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMantCliente.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMembresia.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMembresia.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMenuPrincipal.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.FormMenuPrincipal.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.Properties.Resources.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.application: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | i0Zx7ybb6qXPLAc+7t2430f6w/FIeo11j161oFrF1EQ= 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.config 2 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe 3 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.pdb 4 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormListaClientes.resources 5 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormLogo.resources 6 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMantCliente.resources 7 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMembresia.resources 8 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMenuPrincipal.resources 9 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.Properties.Resources.resources 10 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.csproj.GenerateResource.Cache 11 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe 12 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.pdb 13 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.manifest 14 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.application 15 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe.manifest 16 | D:\Programacion\TUT\Tutoriales #2\Proyectos\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.application 17 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.config 18 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe 19 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.pdb 20 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.manifest 21 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.application 22 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe 23 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.pdb 24 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.csprojResolveAssemblyReference.cache 25 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormListaClientes.resources 26 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormLogo.resources 27 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMantCliente.resources 28 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMembresia.resources 29 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMenuPrincipal.resources 30 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.Properties.Resources.resources 31 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.csproj.GenerateResource.Cache 32 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe.manifest 33 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.application 34 | D:\Programacion\TUT\Tutoriales #2\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.Form1.resources 35 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.config 36 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe 37 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.pdb 38 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe.manifest 39 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.application 40 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.exe 41 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\bin\Debug\COMPLETE_FLAT_UI.pdb 42 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.csprojResolveAssemblyReference.cache 43 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.Form1.resources 44 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormListaClientes.resources 45 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormLogo.resources 46 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMantCliente.resources 47 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMembresia.resources 48 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.FormMenuPrincipal.resources 49 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.Properties.Resources.resources 50 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.csproj.GenerateResource.Cache 51 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.exe.manifest 52 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.application 53 | D:\RJ Code Advance\Proyectos y DBs 2019\COMPLETE_FLAT_UI\COMPLETE_FLAT_UI\obj\Debug\COMPLETE_FLAT_UI.test.FormMenuPrincipal.resources 54 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.exe -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 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 | +NbNpURsfmPNnB4jUOJYSeWur7pWuOfH9vxZPBaS128= 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | rl5/qDc7Jz+tB+BIbOv9iMGPlRe6YJwrjmU09dnlPcs= 63 | 64 | 65 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.pdb -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.test.FormMenuPrincipal.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/COMPLETE_FLAT_UI.test.FormMenuPrincipal.resources -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/ModernFlat-GUI-Version-Completa-C-Sharp/6302a1c0b79043151ae383e1d6cce6fb38efde3f/COMPLETE_FLAT_UI/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/test/FormMenuPrincipal.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace COMPLETE_FLAT_UI.test 2 | { 3 | partial class FormMenuPrincipal 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "FormMenuPrincipal"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/test/FormMenuPrincipal.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace COMPLETE_FLAT_UI.test 12 | { 13 | public partial class FormMenuPrincipal : Form 14 | { 15 | public FormMenuPrincipal() 16 | { 17 | InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /COMPLETE_FLAT_UI/test/FormMenuPrincipal.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 RJ Code Advance 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Formulario Plano Moderno con Menú animado Efecto Sliding, One Window, Versión Completa/ C#, WinForm (Beta)+Pasar Datos Entre Formularios 2 | 3 |

Tutorial:

4 |

Blog:

5 | https://rjcodeadvance.com/parte-2-formulario-plano-moderno-con-menu-animado-efecto-sliding-one-window-version-completa-c-winform-pasar-datos-entre-forms/ 6 |

YouTube:

7 | https://www.youtube.com/watch?v=vQrADCBPoGk 8 | 9 |
10 |

Pink Dark Theme

11 |
12 | 13 | --------------------------------------------------------------------------------