ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.RVACalculator/CheatInputDialog.Designer.cs
Revision: 856
Committed: Tue Sep 16 21:23:53 2014 UTC (8 years, 8 months ago) by william
File size: 7315 byte(s)
Log Message:
+ differeniate the UserPlugin RVACalculator from the main RVACalculator
  ++ the user plugin is now named RVACheatList

File Contents

# Content
1 namespace RomCheater.RVACheatList
2 {
3 partial class CheatInputDialog
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.lblCheatName = new System.Windows.Forms.Label();
32 this.txtCheatName = new System.Windows.Forms.TextBox();
33 this.lblCheatAddress = new System.Windows.Forms.Label();
34 this.txtCheatAddress = new System.Windows.Forms.MaskedHexBox();
35 this.btnOK = new System.Windows.Forms.Button();
36 this.btnCANCEL = new System.Windows.Forms.Button();
37 this.SuspendLayout();
38 //
39 // lblCheatName
40 //
41 this.lblCheatName.AutoSize = true;
42 this.lblCheatName.Location = new System.Drawing.Point(1, 0);
43 this.lblCheatName.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
44 this.lblCheatName.Name = "lblCheatName";
45 this.lblCheatName.Size = new System.Drawing.Size(237, 30);
46 this.lblCheatName.TabIndex = 0;
47 this.lblCheatName.Text = " Cheat Name:";
48 this.lblCheatName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
49 //
50 // txtCheatName
51 //
52 this.txtCheatName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
53 | System.Windows.Forms.AnchorStyles.Right)));
54 this.txtCheatName.Location = new System.Drawing.Point(238, -3);
55 this.txtCheatName.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
56 this.txtCheatName.Name = "txtCheatName";
57 this.txtCheatName.Size = new System.Drawing.Size(591, 38);
58 this.txtCheatName.TabIndex = 1;
59 //
60 // lblCheatAddress
61 //
62 this.lblCheatAddress.AutoSize = true;
63 this.lblCheatAddress.Location = new System.Drawing.Point(1, 42);
64 this.lblCheatAddress.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
65 this.lblCheatAddress.Name = "lblCheatAddress";
66 this.lblCheatAddress.Size = new System.Drawing.Size(237, 30);
67 this.lblCheatAddress.TabIndex = 2;
68 this.lblCheatAddress.Text = "Cheat Address:";
69 this.lblCheatAddress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
70 //
71 // txtCheatAddress
72 //
73 this.txtCheatAddress.AutoSize = true;
74 this.txtCheatAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
75 this.txtCheatAddress.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
76 this.txtCheatAddress.isAddressMask = true;
77 this.txtCheatAddress.Location = new System.Drawing.Point(238, 42);
78 this.txtCheatAddress.Margin = new System.Windows.Forms.Padding(0);
79 this.txtCheatAddress.MaxLength = 8;
80 this.txtCheatAddress.Name = "txtCheatAddress";
81 this.txtCheatAddress.ReadOnly = false;
82 this.txtCheatAddress.Size = new System.Drawing.Size(335, 44);
83 this.txtCheatAddress.TabIndex = 3;
84 this.txtCheatAddress.TextLength = 8;
85 this.txtCheatAddress.Value = ((ulong)(0ul));
86 //
87 // btnOK
88 //
89 this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
90 this.btnOK.AutoSize = true;
91 this.btnOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
92 this.btnOK.Location = new System.Drawing.Point(654, 42);
93 this.btnOK.Name = "btnOK";
94 this.btnOK.Size = new System.Drawing.Size(55, 40);
95 this.btnOK.TabIndex = 4;
96 this.btnOK.Text = "OK";
97 this.btnOK.UseVisualStyleBackColor = true;
98 this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
99 //
100 // btnCANCEL
101 //
102 this.btnCANCEL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
103 this.btnCANCEL.AutoSize = true;
104 this.btnCANCEL.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
105 this.btnCANCEL.Location = new System.Drawing.Point(715, 42);
106 this.btnCANCEL.Name = "btnCANCEL";
107 this.btnCANCEL.Size = new System.Drawing.Size(119, 40);
108 this.btnCANCEL.TabIndex = 5;
109 this.btnCANCEL.Text = "CANCEL";
110 this.btnCANCEL.UseVisualStyleBackColor = true;
111 this.btnCANCEL.Click += new System.EventHandler(this.btnCANCEL_Click);
112 //
113 // CheatInputDialog
114 //
115 this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 30F);
116 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117 this.AutoSize = true;
118 this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
119 this.ClientSize = new System.Drawing.Size(846, 94);
120 this.Controls.Add(this.btnCANCEL);
121 this.Controls.Add(this.btnOK);
122 this.Controls.Add(this.txtCheatName);
123 this.Controls.Add(this.lblCheatName);
124 this.Controls.Add(this.txtCheatAddress);
125 this.Controls.Add(this.lblCheatAddress);
126 this.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
127 this.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
128 this.Name = "CheatInputDialog";
129 this.Text = "Cheat Input Dialog";
130 this.Shown += new System.EventHandler(this.CheatInputDialog_Shown);
131 this.ResumeLayout(false);
132 this.PerformLayout();
133
134 }
135
136 #endregion
137
138 private System.Windows.Forms.Label lblCheatName;
139 private System.Windows.Forms.TextBox txtCheatName;
140 private System.Windows.Forms.Label lblCheatAddress;
141 private System.Windows.Forms.MaskedHexBox txtCheatAddress;
142 private System.Windows.Forms.Button btnOK;
143 private System.Windows.Forms.Button btnCANCEL;
144 }
145 }