150 lines
7.1 KiB
C#
150 lines
7.1 KiB
C#
namespace AyaNovaOL
|
|
{
|
|
partial class SelectAyaNovaContacts
|
|
{
|
|
/// <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.grid = new System.Windows.Forms.DataGridView();
|
|
this.Select = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.Contact = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.ckAll = new System.Windows.Forms.CheckBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// grid
|
|
//
|
|
this.grid.AllowUserToAddRows = false;
|
|
this.grid.AllowUserToDeleteRows = false;
|
|
this.grid.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.grid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
|
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Select,
|
|
this.Contact,
|
|
this.ID});
|
|
this.grid.Location = new System.Drawing.Point(3, 4);
|
|
this.grid.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.grid.Name = "grid";
|
|
this.grid.RowHeadersVisible = false;
|
|
this.grid.Size = new System.Drawing.Size(1021, 548);
|
|
this.grid.TabIndex = 2;
|
|
//
|
|
// Select
|
|
//
|
|
this.Select.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
|
|
this.Select.HeaderText = "Select";
|
|
this.Select.Name = "Select";
|
|
this.Select.Width = 53;
|
|
//
|
|
// Contact
|
|
//
|
|
this.Contact.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.Contact.HeaderText = "Contact";
|
|
this.Contact.Name = "Contact";
|
|
this.Contact.ReadOnly = true;
|
|
//
|
|
// ID
|
|
//
|
|
this.ID.HeaderText = "ID";
|
|
this.ID.Name = "ID";
|
|
this.ID.Visible = false;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnCancel.Image = global::AyaNovaOL.Resource1.Cancel24;
|
|
this.btnCancel.Location = new System.Drawing.Point(3, 635);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 43);
|
|
this.btnCancel.TabIndex = 32;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnOK.Image = global::AyaNovaOL.Resource1.OK24;
|
|
this.btnOK.Location = new System.Drawing.Point(940, 635);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 43);
|
|
this.btnOK.TabIndex = 33;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// ckAll
|
|
//
|
|
this.ckAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ckAll.AutoSize = true;
|
|
this.ckAll.Location = new System.Drawing.Point(7, 559);
|
|
this.ckAll.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.ckAll.Name = "ckAll";
|
|
this.ckAll.Size = new System.Drawing.Size(45, 21);
|
|
this.ckAll.TabIndex = 34;
|
|
this.ckAll.Text = "All";
|
|
this.ckAll.UseVisualStyleBackColor = true;
|
|
this.ckAll.CheckedChanged += new System.EventHandler(this.ckAll_CheckedChanged);
|
|
//
|
|
// SelectAyaNovaContacts
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1031, 693);
|
|
this.Controls.Add(this.ckAll);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.grid);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.Name = "SelectAyaNovaContacts";
|
|
this.Text = "Select AyaNova contacts";
|
|
this.Load += new System.EventHandler(this.SelectAyaNovaContacts_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView grid;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn Select;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Contact;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ID;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.CheckBox ckAll;
|
|
|
|
}
|
|
} |