89 lines
3.3 KiB
C#
89 lines
3.3 KiB
C#
namespace Volian.Controls.Library
|
|
{
|
|
partial class CustomMessageBox
|
|
{
|
|
/// <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.btn1 = new System.Windows.Forms.Button();
|
|
this.btn2 = new System.Windows.Forms.Button();
|
|
this.lblMessage = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// btn1
|
|
//
|
|
this.btn1.AutoSize = true;
|
|
this.btn1.Location = new System.Drawing.Point(12, 99);
|
|
this.btn1.Name = "btn1";
|
|
this.btn1.Size = new System.Drawing.Size(75, 23);
|
|
this.btn1.TabIndex = 0;
|
|
this.btn1.UseVisualStyleBackColor = true;
|
|
this.btn1.Click += new System.EventHandler(this.Btn1_Click);
|
|
//
|
|
// btn2
|
|
//
|
|
this.btn2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btn2.AutoSize = true;
|
|
this.btn2.Location = new System.Drawing.Point(322, 99);
|
|
this.btn2.Name = "btn2";
|
|
this.btn2.Size = new System.Drawing.Size(75, 23);
|
|
this.btn2.TabIndex = 1;
|
|
this.btn2.UseVisualStyleBackColor = true;
|
|
this.btn2.Click += new System.EventHandler(this.Btn2_Click);
|
|
//
|
|
// lblMessage
|
|
//
|
|
this.lblMessage.AutoSize = true;
|
|
this.lblMessage.Location = new System.Drawing.Point(33, 41);
|
|
this.lblMessage.Name = "lblMessage";
|
|
this.lblMessage.Size = new System.Drawing.Size(0, 13);
|
|
this.lblMessage.TabIndex = 2;
|
|
this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// CustomMessageBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.AutoSize = true;
|
|
this.ClientSize = new System.Drawing.Size(419, 130);
|
|
this.Controls.Add(this.lblMessage);
|
|
this.Controls.Add(this.btn2);
|
|
this.Controls.Add(this.btn1);
|
|
this.Name = "CustomMessageBox";
|
|
this.ShowIcon = false;
|
|
this.Text = "CustomMessageBox";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btn1;
|
|
private System.Windows.Forms.Button btn2;
|
|
private System.Windows.Forms.Label lblMessage;
|
|
}
|
|
} |