You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
4.5 KiB
95 lines
4.5 KiB
namespace AppointmentsUi.Views
|
|
{
|
|
partial class ContactsList
|
|
{
|
|
/// <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.buttonAddNewContact = new System.Windows.Forms.Button();
|
|
this.labelContactsHeader = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanelContacts = new System.Windows.Forms.TableLayoutPanel();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonAddNewContact
|
|
//
|
|
this.buttonAddNewContact.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonAddNewContact.Location = new System.Drawing.Point(725, -1);
|
|
this.buttonAddNewContact.Name = "buttonAddNewContact";
|
|
this.buttonAddNewContact.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonAddNewContact.TabIndex = 11;
|
|
this.buttonAddNewContact.Text = "Add new";
|
|
this.buttonAddNewContact.UseVisualStyleBackColor = true;
|
|
this.buttonAddNewContact.Click += new System.EventHandler(this.buttonAddNewContact_Click);
|
|
//
|
|
// labelContactsHeader
|
|
//
|
|
this.labelContactsHeader.AutoSize = true;
|
|
this.labelContactsHeader.Location = new System.Drawing.Point(-1, 3);
|
|
this.labelContactsHeader.Name = "labelContactsHeader";
|
|
this.labelContactsHeader.Size = new System.Drawing.Size(54, 15);
|
|
this.labelContactsHeader.TabIndex = 10;
|
|
this.labelContactsHeader.Text = "Contacts";
|
|
//
|
|
// tableLayoutPanelContacts
|
|
//
|
|
this.tableLayoutPanelContacts.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tableLayoutPanelContacts.BackColor = System.Drawing.SystemColors.Control;
|
|
this.tableLayoutPanelContacts.ColumnCount = 4;
|
|
this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanelContacts.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanelContacts.Location = new System.Drawing.Point(-1, 28);
|
|
this.tableLayoutPanelContacts.Name = "tableLayoutPanelContacts";
|
|
this.tableLayoutPanelContacts.RowCount = 1;
|
|
this.tableLayoutPanelContacts.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanelContacts.Size = new System.Drawing.Size(802, 423);
|
|
this.tableLayoutPanelContacts.TabIndex = 9;
|
|
//
|
|
// ContactsList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.buttonAddNewContact);
|
|
this.Controls.Add(this.labelContactsHeader);
|
|
this.Controls.Add(this.tableLayoutPanelContacts);
|
|
this.Name = "ContactsList";
|
|
this.Text = "ContactsList";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonAddNewContact;
|
|
private System.Windows.Forms.Label labelContactsHeader;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanelContacts;
|
|
}
|
|
} |