Learning/Mysql-example/UserEditForm.Designer.cs
2023-05-05 20:58:11 +02:00

398 lines
No EOL
25 KiB
C#

namespace Mysql_example
{
partial class UserEditForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.ContextMenuStripAddress = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToolStripMenuItemMakeDefaultBilling = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItemMakeDefaultShipping = new System.Windows.Forms.ToolStripMenuItem();
this.DeleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.TableLayoutPanelButtons = new System.Windows.Forms.TableLayoutPanel();
this.UserEditCancelButton = new System.Windows.Forms.Button();
this.UserEditSaveButton = new System.Windows.Forms.Button();
this.UserEditRevertButton = new System.Windows.Forms.Button();
this.EditTabs = new System.Windows.Forms.TabControl();
this.TabPageUser = new System.Windows.Forms.TabPage();
this.TableLayoutPanelUserData = new System.Windows.Forms.TableLayoutPanel();
this.TextBoxEmail = new System.Windows.Forms.TextBox();
this.TextBoxLastName = new System.Windows.Forms.TextBox();
this.TextBoxFirstName = new System.Windows.Forms.TextBox();
this.DateTimePickerBirthday = new System.Windows.Forms.DateTimePicker();
this.LabelFirstName = new System.Windows.Forms.Label();
this.LabelLastName = new System.Windows.Forms.Label();
this.LabelEmail = new System.Windows.Forms.Label();
this.LabelBirthday = new System.Windows.Forms.Label();
this.TabPageAddresses = new System.Windows.Forms.TabPage();
this.DataGridViewAddresses = new System.Windows.Forms.DataGridView();
this.TableLayoutPanelVerticalSplit = new System.Windows.Forms.TableLayoutPanel();
this.ErrorProviderUserEdit = new System.Windows.Forms.ErrorProvider(this.components);
this.ContextMenuStripAddress.SuspendLayout();
this.TableLayoutPanelButtons.SuspendLayout();
this.EditTabs.SuspendLayout();
this.TabPageUser.SuspendLayout();
this.TableLayoutPanelUserData.SuspendLayout();
this.TabPageAddresses.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DataGridViewAddresses)).BeginInit();
this.TableLayoutPanelVerticalSplit.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ErrorProviderUserEdit)).BeginInit();
this.SuspendLayout();
//
// ContextMenuStripAddress
//
this.ContextMenuStripAddress.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItemMakeDefaultBilling,
this.ToolStripMenuItemMakeDefaultShipping,
this.DeleteToolStripMenuItem});
this.ContextMenuStripAddress.Name = "contextMenuStrip1";
this.ContextMenuStripAddress.Size = new System.Drawing.Size(240, 70);
//
// ToolStripMenuItemMakeDefaultBilling
//
this.ToolStripMenuItemMakeDefaultBilling.Name = "ToolStripMenuItemMakeDefaultBilling";
this.ToolStripMenuItemMakeDefaultBilling.Size = new System.Drawing.Size(239, 22);
this.ToolStripMenuItemMakeDefaultBilling.Text = "Make Default Billing Address";
this.ToolStripMenuItemMakeDefaultBilling.Click += new System.EventHandler(this.ToolStripMenuItemMakeDefaultBilling_Click);
//
// ToolStripMenuItemMakeDefaultShipping
//
this.ToolStripMenuItemMakeDefaultShipping.Name = "ToolStripMenuItemMakeDefaultShipping";
this.ToolStripMenuItemMakeDefaultShipping.Size = new System.Drawing.Size(239, 22);
this.ToolStripMenuItemMakeDefaultShipping.Text = "Make Default Shipping Address";
this.ToolStripMenuItemMakeDefaultShipping.Click += new System.EventHandler(this.ToolStripMenuItemMakeDefaultShipping_Click);
//
// DeleteToolStripMenuItem
//
this.DeleteToolStripMenuItem.Name = "DeleteToolStripMenuItem";
this.DeleteToolStripMenuItem.Size = new System.Drawing.Size(239, 22);
this.DeleteToolStripMenuItem.Text = "Delete";
this.DeleteToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItemDelete_Click);
//
// TableLayoutPanelButtons
//
this.TableLayoutPanelButtons.ColumnCount = 3;
this.TableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.TableLayoutPanelButtons.Controls.Add(this.UserEditCancelButton, 0, 0);
this.TableLayoutPanelButtons.Controls.Add(this.UserEditSaveButton, 2, 0);
this.TableLayoutPanelButtons.Controls.Add(this.UserEditRevertButton, 1, 0);
this.TableLayoutPanelButtons.Dock = System.Windows.Forms.DockStyle.Fill;
this.TableLayoutPanelButtons.Location = new System.Drawing.Point(0, 201);
this.TableLayoutPanelButtons.Margin = new System.Windows.Forms.Padding(0);
this.TableLayoutPanelButtons.Name = "TableLayoutPanelButtons";
this.TableLayoutPanelButtons.Padding = new System.Windows.Forms.Padding(3);
this.TableLayoutPanelButtons.RowCount = 1;
this.TableLayoutPanelButtons.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.TableLayoutPanelButtons.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.TableLayoutPanelButtons.Size = new System.Drawing.Size(584, 40);
this.TableLayoutPanelButtons.TabIndex = 1;
//
// UserEditCancelButton
//
this.UserEditCancelButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.UserEditCancelButton.Location = new System.Drawing.Point(3, 3);
this.UserEditCancelButton.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
this.UserEditCancelButton.Name = "UserEditCancelButton";
this.UserEditCancelButton.Size = new System.Drawing.Size(189, 34);
this.UserEditCancelButton.TabIndex = 0;
this.UserEditCancelButton.Text = "Cancel";
this.UserEditCancelButton.UseVisualStyleBackColor = true;
this.UserEditCancelButton.Click += new System.EventHandler(this.CancelButton_Click);
//
// UserEditSaveButton
//
this.UserEditSaveButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.UserEditSaveButton.Location = new System.Drawing.Point(387, 3);
this.UserEditSaveButton.Margin = new System.Windows.Forms.Padding(0);
this.UserEditSaveButton.Name = "UserEditSaveButton";
this.UserEditSaveButton.Size = new System.Drawing.Size(194, 34);
this.UserEditSaveButton.TabIndex = 0;
this.UserEditSaveButton.Text = "Save";
this.UserEditSaveButton.UseVisualStyleBackColor = true;
this.UserEditSaveButton.Click += new System.EventHandler(this.SaveButton_Click);
//
// UserEditRevertButton
//
this.UserEditRevertButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.UserEditRevertButton.Location = new System.Drawing.Point(195, 3);
this.UserEditRevertButton.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
this.UserEditRevertButton.Name = "UserEditRevertButton";
this.UserEditRevertButton.Size = new System.Drawing.Size(189, 34);
this.UserEditRevertButton.TabIndex = 0;
this.UserEditRevertButton.Text = "Revert";
this.UserEditRevertButton.UseVisualStyleBackColor = true;
this.UserEditRevertButton.Click += new System.EventHandler(this.RevertButton_Click);
//
// EditTabs
//
this.EditTabs.Controls.Add(this.TabPageUser);
this.EditTabs.Controls.Add(this.TabPageAddresses);
this.EditTabs.Dock = System.Windows.Forms.DockStyle.Fill;
this.EditTabs.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.EditTabs.ItemSize = new System.Drawing.Size(60, 20);
this.EditTabs.Location = new System.Drawing.Point(0, 0);
this.EditTabs.Margin = new System.Windows.Forms.Padding(0);
this.EditTabs.Name = "EditTabs";
this.EditTabs.Padding = new System.Drawing.Point(0, 0);
this.EditTabs.SelectedIndex = 0;
this.EditTabs.Size = new System.Drawing.Size(584, 201);
this.EditTabs.TabIndex = 0;
//
// TabPageUser
//
this.TabPageUser.Controls.Add(this.TableLayoutPanelUserData);
this.TabPageUser.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.TabPageUser.Location = new System.Drawing.Point(4, 24);
this.TabPageUser.Margin = new System.Windows.Forms.Padding(0);
this.TabPageUser.Name = "TabPageUser";
this.TabPageUser.Size = new System.Drawing.Size(576, 173);
this.TabPageUser.TabIndex = 0;
this.TabPageUser.Text = "User";
this.TabPageUser.UseVisualStyleBackColor = true;
//
// TableLayoutPanelUserData
//
this.TableLayoutPanelUserData.ColumnCount = 2;
this.TableLayoutPanelUserData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.TableLayoutPanelUserData.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.TableLayoutPanelUserData.Controls.Add(this.TextBoxEmail, 1, 2);
this.TableLayoutPanelUserData.Controls.Add(this.TextBoxLastName, 1, 1);
this.TableLayoutPanelUserData.Controls.Add(this.TextBoxFirstName, 1, 0);
this.TableLayoutPanelUserData.Controls.Add(this.DateTimePickerBirthday, 1, 3);
this.TableLayoutPanelUserData.Controls.Add(this.LabelFirstName, 0, 0);
this.TableLayoutPanelUserData.Controls.Add(this.LabelLastName, 0, 1);
this.TableLayoutPanelUserData.Controls.Add(this.LabelEmail, 0, 2);
this.TableLayoutPanelUserData.Controls.Add(this.LabelBirthday, 0, 3);
this.TableLayoutPanelUserData.Dock = System.Windows.Forms.DockStyle.Fill;
this.TableLayoutPanelUserData.Location = new System.Drawing.Point(0, 0);
this.TableLayoutPanelUserData.Margin = new System.Windows.Forms.Padding(0);
this.TableLayoutPanelUserData.Name = "TableLayoutPanelUserData";
this.TableLayoutPanelUserData.Padding = new System.Windows.Forms.Padding(0, 0, 22, 0);
this.TableLayoutPanelUserData.RowCount = 5;
this.TableLayoutPanelUserData.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 43F));
this.TableLayoutPanelUserData.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 43F));
this.TableLayoutPanelUserData.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 43F));
this.TableLayoutPanelUserData.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 43F));
this.TableLayoutPanelUserData.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.TableLayoutPanelUserData.Size = new System.Drawing.Size(576, 173);
this.TableLayoutPanelUserData.TabIndex = 0;
//
// TextBoxEmail
//
this.TextBoxEmail.Dock = System.Windows.Forms.DockStyle.Fill;
this.TextBoxEmail.Location = new System.Drawing.Point(98, 89);
this.TextBoxEmail.MinimumSize = new System.Drawing.Size(0, 40);
this.TextBoxEmail.Name = "TextBoxEmail";
this.TextBoxEmail.PlaceholderText = "Email";
this.TextBoxEmail.Size = new System.Drawing.Size(453, 40);
this.TextBoxEmail.TabIndex = 0;
this.TextBoxEmail.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxEmail_Validating);
//
// TextBoxLastName
//
this.TextBoxLastName.Dock = System.Windows.Forms.DockStyle.Fill;
this.TextBoxLastName.Location = new System.Drawing.Point(98, 46);
this.TextBoxLastName.MinimumSize = new System.Drawing.Size(0, 40);
this.TextBoxLastName.Name = "TextBoxLastName";
this.TextBoxLastName.PlaceholderText = "Last Name";
this.TextBoxLastName.Size = new System.Drawing.Size(453, 40);
this.TextBoxLastName.TabIndex = 0;
//
// TextBoxFirstName
//
this.TextBoxFirstName.Dock = System.Windows.Forms.DockStyle.Fill;
this.TextBoxFirstName.Location = new System.Drawing.Point(98, 3);
this.TextBoxFirstName.MinimumSize = new System.Drawing.Size(0, 40);
this.TextBoxFirstName.Name = "TextBoxFirstName";
this.TextBoxFirstName.PlaceholderText = "First Name";
this.TextBoxFirstName.Size = new System.Drawing.Size(453, 40);
this.TextBoxFirstName.TabIndex = 0;
//
// DateTimePickerBirthday
//
this.DateTimePickerBirthday.Dock = System.Windows.Forms.DockStyle.Fill;
this.DateTimePickerBirthday.Location = new System.Drawing.Point(98, 132);
this.DateTimePickerBirthday.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
this.DateTimePickerBirthday.MinimumSize = new System.Drawing.Size(0, 40);
this.DateTimePickerBirthday.Name = "DateTimePickerBirthday";
this.DateTimePickerBirthday.Size = new System.Drawing.Size(453, 40);
this.DateTimePickerBirthday.TabIndex = 0;
//
// LabelFirstName
//
this.LabelFirstName.AutoSize = true;
this.LabelFirstName.Dock = System.Windows.Forms.DockStyle.Fill;
this.LabelFirstName.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.LabelFirstName.Location = new System.Drawing.Point(3, 3);
this.LabelFirstName.Margin = new System.Windows.Forms.Padding(3);
this.LabelFirstName.Name = "LabelFirstName";
this.LabelFirstName.Size = new System.Drawing.Size(89, 37);
this.LabelFirstName.TabIndex = 1;
this.LabelFirstName.Text = "First Name:";
this.LabelFirstName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// LabelLastName
//
this.LabelLastName.AutoSize = true;
this.LabelLastName.Dock = System.Windows.Forms.DockStyle.Fill;
this.LabelLastName.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.LabelLastName.Location = new System.Drawing.Point(3, 46);
this.LabelLastName.Margin = new System.Windows.Forms.Padding(3);
this.LabelLastName.Name = "LabelLastName";
this.LabelLastName.Size = new System.Drawing.Size(89, 37);
this.LabelLastName.TabIndex = 2;
this.LabelLastName.Text = "Last Name:";
this.LabelLastName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// LabelEmail
//
this.LabelEmail.AutoSize = true;
this.LabelEmail.Dock = System.Windows.Forms.DockStyle.Fill;
this.LabelEmail.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.LabelEmail.Location = new System.Drawing.Point(3, 89);
this.LabelEmail.Margin = new System.Windows.Forms.Padding(3);
this.LabelEmail.Name = "LabelEmail";
this.LabelEmail.Size = new System.Drawing.Size(89, 37);
this.LabelEmail.TabIndex = 3;
this.LabelEmail.Text = "Email:";
this.LabelEmail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// LabelBirthday
//
this.LabelBirthday.AutoSize = true;
this.LabelBirthday.Dock = System.Windows.Forms.DockStyle.Fill;
this.LabelBirthday.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.LabelBirthday.Location = new System.Drawing.Point(3, 132);
this.LabelBirthday.Margin = new System.Windows.Forms.Padding(3);
this.LabelBirthday.Name = "LabelBirthday";
this.LabelBirthday.Size = new System.Drawing.Size(89, 37);
this.LabelBirthday.TabIndex = 4;
this.LabelBirthday.Text = "Birthday:";
this.LabelBirthday.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// TabPageAddresses
//
this.TabPageAddresses.Controls.Add(this.DataGridViewAddresses);
this.TabPageAddresses.Location = new System.Drawing.Point(4, 24);
this.TabPageAddresses.Margin = new System.Windows.Forms.Padding(0);
this.TabPageAddresses.Name = "TabPageAddresses";
this.TabPageAddresses.Size = new System.Drawing.Size(576, 173);
this.TabPageAddresses.TabIndex = 1;
this.TabPageAddresses.Text = "Addresses";
this.TabPageAddresses.UseVisualStyleBackColor = true;
//
// DataGridViewAddresses
//
this.DataGridViewAddresses.AllowUserToDeleteRows = false;
this.DataGridViewAddresses.AllowUserToResizeRows = false;
this.DataGridViewAddresses.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.DataGridViewAddresses.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.DataGridViewAddresses.Dock = System.Windows.Forms.DockStyle.Fill;
this.DataGridViewAddresses.Location = new System.Drawing.Point(0, 0);
this.DataGridViewAddresses.Name = "DataGridViewAddresses";
this.DataGridViewAddresses.RowHeadersVisible = false;
this.DataGridViewAddresses.RowTemplate.ContextMenuStrip = this.ContextMenuStripAddress;
this.DataGridViewAddresses.RowTemplate.Height = 25;
this.DataGridViewAddresses.Size = new System.Drawing.Size(576, 173);
this.DataGridViewAddresses.TabIndex = 0;
this.DataGridViewAddresses.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridViewAddresses_CellClick);
this.DataGridViewAddresses.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.DataGridViewAddresses_CellFormatting);
this.DataGridViewAddresses.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridViewAddresses_CellMouseEnter);
this.DataGridViewAddresses.CurrentCellDirtyStateChanged += new System.EventHandler(this.DataGridViewAddresses_CurrentCellDirtyStateChanged);
//
// TableLayoutPanelVerticalSplit
//
this.TableLayoutPanelVerticalSplit.ColumnCount = 1;
this.TableLayoutPanelVerticalSplit.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.TableLayoutPanelVerticalSplit.Controls.Add(this.EditTabs, 0, 0);
this.TableLayoutPanelVerticalSplit.Controls.Add(this.TableLayoutPanelButtons, 0, 1);
this.TableLayoutPanelVerticalSplit.Dock = System.Windows.Forms.DockStyle.Fill;
this.TableLayoutPanelVerticalSplit.Location = new System.Drawing.Point(0, 0);
this.TableLayoutPanelVerticalSplit.Margin = new System.Windows.Forms.Padding(6);
this.TableLayoutPanelVerticalSplit.Name = "TableLayoutPanelVerticalSplit";
this.TableLayoutPanelVerticalSplit.RowCount = 2;
this.TableLayoutPanelVerticalSplit.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.TableLayoutPanelVerticalSplit.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.TableLayoutPanelVerticalSplit.Size = new System.Drawing.Size(584, 241);
this.TableLayoutPanelVerticalSplit.TabIndex = 2;
//
// ErrorProviderUserEdit
//
this.ErrorProviderUserEdit.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
this.ErrorProviderUserEdit.ContainerControl = this;
//
// UserEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(584, 241);
this.Controls.Add(this.TableLayoutPanelVerticalSplit);
this.MinimumSize = new System.Drawing.Size(550, 280);
this.Name = "UserEditForm";
this.Text = "UserEditForm";
this.ContextMenuStripAddress.ResumeLayout(false);
this.TableLayoutPanelButtons.ResumeLayout(false);
this.EditTabs.ResumeLayout(false);
this.TabPageUser.ResumeLayout(false);
this.TableLayoutPanelUserData.ResumeLayout(false);
this.TableLayoutPanelUserData.PerformLayout();
this.TabPageAddresses.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.DataGridViewAddresses)).EndInit();
this.TableLayoutPanelVerticalSplit.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.ErrorProviderUserEdit)).EndInit();
this.ResumeLayout(false);
}
#endregion
private ContextMenuStrip ContextMenuStripAddress;
private ToolStripMenuItem ToolStripMenuItemMakeDefaultBilling;
private ToolStripMenuItem ToolStripMenuItemMakeDefaultShipping;
private TableLayoutPanel TableLayoutPanelButtons;
private Button UserEditCancelButton;
private Button UserEditSaveButton;
private Button UserEditRevertButton;
private TabControl EditTabs;
private TabPage TabPageUser;
private TableLayoutPanel TableLayoutPanelUserData;
private TextBox TextBoxEmail;
private TextBox TextBoxLastName;
private TextBox TextBoxFirstName;
private DateTimePicker DateTimePickerBirthday;
private Label LabelFirstName;
private Label LabelLastName;
private Label LabelEmail;
private Label LabelBirthday;
private TabPage TabPageAddresses;
private DataGridView DataGridViewAddresses;
private TableLayoutPanel TableLayoutPanelVerticalSplit;
private ErrorProvider ErrorProviderUserEdit;
private ToolStripMenuItem DeleteToolStripMenuItem;
}
}