MSNPSharp/Example/RemoveContactForm.Designer.cs
2023-07-15 01:45:29 -03:00

102 lines
No EOL
4 KiB
C#

namespace MSNPSharpClient
{
partial class RemoveContactForm
{
/// <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.cbRemove = new System.Windows.Forms.CheckBox();
this.cbBlock = new System.Windows.Forms.CheckBox();
this.btnRemove = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cbRemove
//
this.cbRemove.AutoSize = true;
this.cbRemove.Location = new System.Drawing.Point(12, 21);
this.cbRemove.Name = "cbRemove";
this.cbRemove.Size = new System.Drawing.Size(201, 17);
this.cbRemove.TabIndex = 0;
this.cbRemove.Text = "Remove this user from my contact list";
this.cbRemove.UseVisualStyleBackColor = true;
//
// cbBlock
//
this.cbBlock.AutoSize = true;
this.cbBlock.Location = new System.Drawing.Point(12, 44);
this.cbBlock.Name = "cbBlock";
this.cbBlock.Size = new System.Drawing.Size(75, 17);
this.cbBlock.TabIndex = 1;
this.cbBlock.Text = "Also block";
this.cbBlock.UseVisualStyleBackColor = true;
//
// btnRemove
//
this.btnRemove.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnRemove.Location = new System.Drawing.Point(24, 76);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(99, 23);
this.btnRemove.TabIndex = 2;
this.btnRemove.Text = "Remove contact";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.btn_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(129, 76);
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;
this.btnCancel.Click += new System.EventHandler(this.btn_Click);
//
// RemoveContactForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(217, 113);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.cbBlock);
this.Controls.Add(this.cbRemove);
this.Name = "RemoveContactForm";
this.Text = "Remove Contact";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox cbRemove;
private System.Windows.Forms.CheckBox cbBlock;
private System.Windows.Forms.Button btnRemove;
private System.Windows.Forms.Button btnCancel;
}
}