120 lines
4.9 KiB
C#
120 lines
4.9 KiB
C#
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
partial class VirtualPadTargetScreen
|
|
{
|
|
/// <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 Component 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.TargetPanel = new System.Windows.Forms.Panel();
|
|
this.XNumeric = new System.Windows.Forms.NumericUpDown();
|
|
this.XLabel = new System.Windows.Forms.Label();
|
|
this.YLabel = new System.Windows.Forms.Label();
|
|
this.YNumeric = new System.Windows.Forms.NumericUpDown();
|
|
((System.ComponentModel.ISupportInitialize)(this.XNumeric)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.YNumeric)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// TargetPanel
|
|
//
|
|
this.TargetPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.TargetPanel.Location = new System.Drawing.Point(0, 0);
|
|
this.TargetPanel.Name = "TargetPanel";
|
|
this.TargetPanel.Size = new System.Drawing.Size(256, 224);
|
|
this.TargetPanel.TabIndex = 0;
|
|
this.TargetPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.TargetPanel_Paint);
|
|
this.TargetPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TargetPanel_MouseDown);
|
|
this.TargetPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TargetPanel_MouseMove);
|
|
this.TargetPanel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TargetPanel_MouseUp);
|
|
//
|
|
// XNumeric
|
|
//
|
|
this.XNumeric.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.XNumeric.Location = new System.Drawing.Point(23, 229);
|
|
this.XNumeric.Name = "XNumeric";
|
|
this.XNumeric.Size = new System.Drawing.Size(50, 20);
|
|
this.XNumeric.TabIndex = 1;
|
|
this.XNumeric.ValueChanged += new System.EventHandler(this.XNumeric_ValueChanged);
|
|
this.XNumeric.KeyUp += new System.Windows.Forms.KeyEventHandler(this.XNumeric_KeyUp);
|
|
//
|
|
// XLabel
|
|
//
|
|
this.XLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.XLabel.AutoSize = true;
|
|
this.XLabel.Location = new System.Drawing.Point(3, 233);
|
|
this.XLabel.Name = "XLabel";
|
|
this.XLabel.Size = new System.Drawing.Size(14, 13);
|
|
this.XLabel.TabIndex = 2;
|
|
this.XLabel.Text = "X";
|
|
//
|
|
// YLabel
|
|
//
|
|
this.YLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.YLabel.AutoSize = true;
|
|
this.YLabel.Location = new System.Drawing.Point(91, 233);
|
|
this.YLabel.Name = "YLabel";
|
|
this.YLabel.Size = new System.Drawing.Size(14, 13);
|
|
this.YLabel.TabIndex = 4;
|
|
this.YLabel.Text = "Y";
|
|
//
|
|
// YNumeric
|
|
//
|
|
this.YNumeric.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.YNumeric.Location = new System.Drawing.Point(111, 229);
|
|
this.YNumeric.Name = "YNumeric";
|
|
this.YNumeric.Size = new System.Drawing.Size(50, 20);
|
|
this.YNumeric.TabIndex = 3;
|
|
this.YNumeric.ValueChanged += new System.EventHandler(this.YNumeric_ValueChanged);
|
|
this.YNumeric.KeyUp += new System.Windows.Forms.KeyEventHandler(this.YNumeric_KeyUp);
|
|
//
|
|
// VirtualPadTargetScreen
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.YLabel);
|
|
this.Controls.Add(this.YNumeric);
|
|
this.Controls.Add(this.XLabel);
|
|
this.Controls.Add(this.XNumeric);
|
|
this.Controls.Add(this.TargetPanel);
|
|
this.Name = "VirtualPadTargetScreen";
|
|
this.Size = new System.Drawing.Size(256, 254);
|
|
this.Load += new System.EventHandler(this.VirtualPadTargetScreen_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.XNumeric)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.YNumeric)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel TargetPanel;
|
|
private System.Windows.Forms.NumericUpDown XNumeric;
|
|
private System.Windows.Forms.Label XLabel;
|
|
private System.Windows.Forms.Label YLabel;
|
|
private System.Windows.Forms.NumericUpDown YNumeric;
|
|
}
|
|
}
|