Files
2024-02-23 11:27:55 +00:00

93 lines
3.9 KiB
C#

namespace WindowsFormsPopupKeyboard
{
partial class Keyboard
{
/// <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.buttonB = new System.Windows.Forms.Button();
this.buttonA = new System.Windows.Forms.Button();
this.buttonC = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonB
//
this.buttonB.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonB.Location = new System.Drawing.Point(87, 18);
this.buttonB.Margin = new System.Windows.Forms.Padding(2);
this.buttonB.Name = "buttonB";
this.buttonB.Size = new System.Drawing.Size(46, 38);
this.buttonB.TabIndex = 0;
this.buttonB.Text = "B";
this.buttonB.UseVisualStyleBackColor = true;
this.buttonB.Click += new System.EventHandler(this.button_Click);
//
// buttonA
//
this.buttonA.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonA.Location = new System.Drawing.Point(25, 18);
this.buttonA.Margin = new System.Windows.Forms.Padding(2);
this.buttonA.Name = "buttonA";
this.buttonA.Size = new System.Drawing.Size(46, 38);
this.buttonA.TabIndex = 1;
this.buttonA.Text = "A";
this.buttonA.UseVisualStyleBackColor = true;
this.buttonA.Click += new System.EventHandler(this.button_Click);
//
// buttonC
//
this.buttonC.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonC.Location = new System.Drawing.Point(150, 18);
this.buttonC.Margin = new System.Windows.Forms.Padding(2);
this.buttonC.Name = "buttonC";
this.buttonC.Size = new System.Drawing.Size(46, 38);
this.buttonC.TabIndex = 3;
this.buttonC.Text = "C";
this.buttonC.UseVisualStyleBackColor = true;
this.buttonC.Click += new System.EventHandler(this.button_Click);
//
// Keyboard
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(626, 213);
this.Controls.Add(this.buttonC);
this.Controls.Add(this.buttonA);
this.Controls.Add(this.buttonB);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "Keyboard";
this.Text = "keyboard";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonB;
private System.Windows.Forms.Button buttonA;
private System.Windows.Forms.Button buttonC;
}
}