ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/MaskedHexBox.Designer.cs
Revision: 88
Committed: Wed May 9 20:52:20 2012 UTC (11 years, 1 month ago) by william
File size: 5736 byte(s)
Log Message:

File Contents

# Content
1 namespace System.Windows.Forms
2 {
3 partial class MaskedHexBox
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 Component 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.txtMaskedHexBox = new System.Windows.Forms.MaskedTextBox();
32 this.btnCopy = new System.Windows.Forms.Button();
33 this.btnPaste = new System.Windows.Forms.Button();
34 this.SuspendLayout();
35 //
36 // txtMaskedHexBox
37 //
38 this.txtMaskedHexBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39 | System.Windows.Forms.AnchorStyles.Right)));
40 this.txtMaskedHexBox.AsciiOnly = true;
41 this.txtMaskedHexBox.BeepOnError = true;
42 this.txtMaskedHexBox.CutCopyMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
43 this.txtMaskedHexBox.Location = new System.Drawing.Point(0, 0);
44 this.txtMaskedHexBox.Margin = new System.Windows.Forms.Padding(0);
45 this.txtMaskedHexBox.Name = "txtMaskedHexBox";
46 this.txtMaskedHexBox.PromptChar = '0';
47 this.txtMaskedHexBox.ResetOnPrompt = false;
48 this.txtMaskedHexBox.ResetOnSpace = false;
49 this.txtMaskedHexBox.Size = new System.Drawing.Size(162, 23);
50 this.txtMaskedHexBox.TabIndex = 0;
51 this.txtMaskedHexBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaskedHexBox_KeyDown);
52 this.txtMaskedHexBox.MaskInputRejected += new System.Windows.Forms.MaskInputRejectedEventHandler(this.txtMaskedHexBox_MaskInputRejected);
53 //
54 // btnCopy
55 //
56 this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
57 this.btnCopy.AutoSize = true;
58 this.btnCopy.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
59 this.btnCopy.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
60 this.btnCopy.Location = new System.Drawing.Point(176, -2);
61 this.btnCopy.Margin = new System.Windows.Forms.Padding(10, 0, 0, 0);
62 this.btnCopy.Name = "btnCopy";
63 this.btnCopy.Size = new System.Drawing.Size(28, 28);
64 this.btnCopy.TabIndex = 1;
65 this.btnCopy.Text = "C";
66 this.btnCopy.UseVisualStyleBackColor = true;
67 this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
68 //
69 // btnPaste
70 //
71 this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
72 this.btnPaste.AutoSize = true;
73 this.btnPaste.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
74 this.btnPaste.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
75 this.btnPaste.Location = new System.Drawing.Point(204, -2);
76 this.btnPaste.Margin = new System.Windows.Forms.Padding(0);
77 this.btnPaste.Name = "btnPaste";
78 this.btnPaste.Size = new System.Drawing.Size(28, 28);
79 this.btnPaste.TabIndex = 2;
80 this.btnPaste.Text = "P";
81 this.btnPaste.UseVisualStyleBackColor = true;
82 this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
83 //
84 // MaskedHexBox
85 //
86 this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 16F);
87 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
88 this.AutoSize = true;
89 this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
90 this.Controls.Add(this.txtMaskedHexBox);
91 this.Controls.Add(this.btnCopy);
92 this.Controls.Add(this.btnPaste);
93 this.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
94 this.Margin = new System.Windows.Forms.Padding(0);
95 this.Name = "MaskedHexBox";
96 this.Size = new System.Drawing.Size(238, 26);
97 this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.MaskedHexBox_KeyPress);
98 this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MaskedHexBox_KeyDown);
99 this.ResumeLayout(false);
100 this.PerformLayout();
101
102 }
103
104 #endregion
105
106 private System.Windows.Forms.MaskedTextBox txtMaskedHexBox;
107 private Button btnCopy;
108 private Button btnPaste;
109 }
110 }