87 lines
3.3 KiB
C#
87 lines
3.3 KiB
C#
namespace WindowsFormsPopupKeyboard
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.textBox2 = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBox2
|
|
//
|
|
this.textBox2.Location = new System.Drawing.Point(112, 139);
|
|
this.textBox2.Margin = new System.Windows.Forms.Padding(2);
|
|
this.textBox2.Name = "textBox2";
|
|
this.textBox2.Size = new System.Drawing.Size(76, 20);
|
|
this.textBox2.TabIndex = 1;
|
|
this.textBox2.GotFocus += new System.EventHandler(this.textBox_GotFocus);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Location = new System.Drawing.Point(109, 173);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(123, 48);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Click on a textbox above to launch the popup keyboard";
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(112, 88);
|
|
this.textBox1.Margin = new System.Windows.Forms.Padding(2);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(76, 20);
|
|
this.textBox1.TabIndex = 4;
|
|
this.textBox1.GotFocus += new System.EventHandler(this.textBox_GotFocus);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(568, 458);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.textBox2);
|
|
this.Margin = new System.Windows.Forms.Padding(2);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
public System.Windows.Forms.TextBox textBox2;
|
|
private System.Windows.Forms.Label label1;
|
|
public System.Windows.Forms.TextBox textBox1;
|
|
}
|
|
}
|
|
|