///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
namespace ContactsPlugin.ContactBlocks
{
partial class FullNameEditForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this._lblTitle = new System.Windows.Forms.Label();
this._lblFirstName = new System.Windows.Forms.Label();
this._lblMidName = new System.Windows.Forms.Label();
this._lblLastName = new System.Windows.Forms.Label();
this._lblSuffix = new System.Windows.Forms.Label();
this._boxTitle = new System.Windows.Forms.TextBox();
this._boxFirstName = new System.Windows.Forms.TextBox();
this._boxMidName = new System.Windows.Forms.TextBox();
this._boxLastName = new System.Windows.Forms.TextBox();
this._boxSuffix = new System.Windows.Forms.TextBox();
this._btnOK = new System.Windows.Forms.Button();
this._btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// _lblTitle
//
this._lblTitle.AutoSize = true;
this._lblTitle.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._lblTitle.Location = new System.Drawing.Point(8, 8);
this._lblTitle.Name = "_lblTitle";
this._lblTitle.Size = new System.Drawing.Size(31, 13);
this._lblTitle.TabIndex = 0;
this._lblTitle.Text = "&Title:";
//
// _lblFirstName
//
this._lblFirstName.AutoSize = true;
this._lblFirstName.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._lblFirstName.Location = new System.Drawing.Point(8, 30);
this._lblFirstName.Name = "_lblFirstName";
this._lblFirstName.Size = new System.Drawing.Size(62, 13);
this._lblFirstName.TabIndex = 0;
this._lblFirstName.Text = "&First Name:";
//
// _lblMidName
//
this._lblMidName.AutoSize = true;
this._lblMidName.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._lblMidName.Location = new System.Drawing.Point(8, 53);
this._lblMidName.Name = "_lblMidName";
this._lblMidName.Size = new System.Drawing.Size(71, 13);
this._lblMidName.TabIndex = 0;
this._lblMidName.Text = "&Middle Name:";
//
// _lblLastName
//
this._lblLastName.AutoSize = true;
this._lblLastName.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._lblLastName.Location = new System.Drawing.Point(8, 75);
this._lblLastName.Name = "_lblLastName";
this._lblLastName.Size = new System.Drawing.Size(61, 13);
this._lblLastName.TabIndex = 0;
this._lblLastName.Text = "&Last Name:";
//
// _lblSuffix
//
this._lblSuffix.AutoSize = true;
this._lblSuffix.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._lblSuffix.Location = new System.Drawing.Point(8, 97);
this._lblSuffix.Name = "_lblSuffix";
this._lblSuffix.Size = new System.Drawing.Size(39, 13);
this._lblSuffix.TabIndex = 0;
this._lblSuffix.Text = "&Suffix:";
//
// _boxTitle
//
this._boxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._boxTitle.Location = new System.Drawing.Point(82, 5);
this._boxTitle.Name = "_boxTitle";
this._boxTitle.Size = new System.Drawing.Size(192, 21);
this._boxTitle.TabIndex = 1;
//
// _boxFirstName
//
this._boxFirstName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._boxFirstName.Location = new System.Drawing.Point(82, 27);
this._boxFirstName.Name = "_boxFirstName";
this._boxFirstName.Size = new System.Drawing.Size(192, 21);
this._boxFirstName.TabIndex = 1;
//
// _boxMidName
//
this._boxMidName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._boxMidName.Location = new System.Drawing.Point(82, 49);
this._boxMidName.Name = "_boxMidName";
this._boxMidName.Size = new System.Drawing.Size(192, 21);
this._boxMidName.TabIndex = 1;
//
// _boxLastName
//
this._boxLastName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._boxLastName.Location = new System.Drawing.Point(82, 71);
this._boxLastName.Name = "_boxLastName";
this._boxLastName.Size = new System.Drawing.Size(192, 21);
this._boxLastName.TabIndex = 1;
//
// _boxSuffix
//
this._boxSuffix.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._boxSuffix.Location = new System.Drawing.Point(82, 93);
this._boxSuffix.Name = "_boxSuffix";
this._boxSuffix.Size = new System.Drawing.Size(192, 21);
this._boxSuffix.TabIndex = 1;
//
// _btnOK
//
this._btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this._btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._btnOK.Location = new System.Drawing.Point(116, 122);
this._btnOK.Name = "_btnOK";
this._btnOK.Size = new System.Drawing.Size(75, 23);
this._btnOK.TabIndex = 2;
this._btnOK.Text = "OK";
this._btnOK.UseVisualStyleBackColor = true;
this._btnOK.Click += new System.EventHandler(this._btnOK_Click);
//
// _btnCancel
//
this._btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this._btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this._btnCancel.Location = new System.Drawing.Point(198, 122);
this._btnCancel.Name = "_btnCancel";
this._btnCancel.Size = new System.Drawing.Size(75, 23);
this._btnCancel.TabIndex = 3;
this._btnCancel.Text = "Cancel";
this._btnCancel.UseVisualStyleBackColor = true;
//
// FullNameEditForm
//
this.AcceptButton = this._btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this._btnCancel;
this.ClientSize = new System.Drawing.Size(276, 153);
this.Controls.Add(this._btnCancel);
this.Controls.Add(this._btnOK);
this.Controls.Add(this._boxSuffix);
this.Controls.Add(this._boxLastName);
this.Controls.Add(this._boxMidName);
this.Controls.Add(this._boxFirstName);
this.Controls.Add(this._boxTitle);
this.Controls.Add(this._lblSuffix);
this.Controls.Add(this._lblLastName);
this.Controls.Add(this._lblMidName);
this.Controls.Add(this._lblFirstName);
this.Controls.Add(this._lblTitle);
this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FullNameEditForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Full Name";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label _lblTitle;
private System.Windows.Forms.Label _lblFirstName;
private System.Windows.Forms.Label _lblMidName;
private System.Windows.Forms.Label _lblLastName;
private System.Windows.Forms.Label _lblSuffix;
private System.Windows.Forms.TextBox _boxTitle;
private System.Windows.Forms.TextBox _boxFirstName;
private System.Windows.Forms.TextBox _boxMidName;
private System.Windows.Forms.TextBox _boxLastName;
private System.Windows.Forms.TextBox _boxSuffix;
private System.Windows.Forms.Button _btnOK;
private System.Windows.Forms.Button _btnCancel;
}
}