PocForm.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. namespace PatchNumericUpDown
  2. {
  3. partial class PocForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.MainNumericUpDown = new System.Windows.Forms.NumericUpDown();
  29. this.SetButton = new System.Windows.Forms.Button();
  30. this.PatchButton = new System.Windows.Forms.Button();
  31. this.UnPatchButton = new System.Windows.Forms.Button();
  32. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  33. ((System.ComponentModel.ISupportInitialize)(this.MainNumericUpDown)).BeginInit();
  34. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // MainNumericUpDown
  38. //
  39. this.MainNumericUpDown.Hexadecimal = true;
  40. this.MainNumericUpDown.Location = new System.Drawing.Point(12, 12);
  41. this.MainNumericUpDown.Maximum = new decimal(new int[] {
  42. 0,
  43. 1,
  44. 0,
  45. 0});
  46. this.MainNumericUpDown.Name = "MainNumericUpDown";
  47. this.MainNumericUpDown.Size = new System.Drawing.Size(77, 21);
  48. this.MainNumericUpDown.TabIndex = 0;
  49. //
  50. // SetButton
  51. //
  52. this.SetButton.Location = new System.Drawing.Point(95, 12);
  53. this.SetButton.Name = "SetButton";
  54. this.SetButton.Size = new System.Drawing.Size(110, 21);
  55. this.SetButton.TabIndex = 1;
  56. this.SetButton.Text = "Set 7FFFFFFF";
  57. this.SetButton.UseVisualStyleBackColor = true;
  58. this.SetButton.Click += new System.EventHandler(this.SetButton_Click);
  59. //
  60. // PatchButton
  61. //
  62. this.PatchButton.Location = new System.Drawing.Point(154, 39);
  63. this.PatchButton.Name = "PatchButton";
  64. this.PatchButton.Size = new System.Drawing.Size(51, 21);
  65. this.PatchButton.TabIndex = 1;
  66. this.PatchButton.Text = "Patch";
  67. this.PatchButton.UseVisualStyleBackColor = true;
  68. this.PatchButton.Click += new System.EventHandler(this.PatchButton_Click);
  69. //
  70. // UnPatchButton
  71. //
  72. this.UnPatchButton.Location = new System.Drawing.Point(95, 39);
  73. this.UnPatchButton.Name = "UnPatchButton";
  74. this.UnPatchButton.Size = new System.Drawing.Size(53, 21);
  75. this.UnPatchButton.TabIndex = 1;
  76. this.UnPatchButton.Text = "UnPath";
  77. this.UnPatchButton.UseVisualStyleBackColor = true;
  78. this.UnPatchButton.Click += new System.EventHandler(this.UnPatchButton_Click);
  79. //
  80. // numericUpDown1
  81. //
  82. this.numericUpDown1.Hexadecimal = true;
  83. this.numericUpDown1.Location = new System.Drawing.Point(12, 39);
  84. this.numericUpDown1.Maximum = new decimal(new int[] {
  85. 0,
  86. 1,
  87. 0,
  88. 0});
  89. this.numericUpDown1.Name = "numericUpDown1";
  90. this.numericUpDown1.Size = new System.Drawing.Size(77, 21);
  91. this.numericUpDown1.TabIndex = 0;
  92. this.numericUpDown1.Value = new decimal(new int[] {
  93. 2147483647,
  94. 0,
  95. 0,
  96. 0});
  97. //
  98. // PocForm
  99. //
  100. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  101. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102. this.ClientSize = new System.Drawing.Size(221, 68);
  103. this.Controls.Add(this.UnPatchButton);
  104. this.Controls.Add(this.PatchButton);
  105. this.Controls.Add(this.SetButton);
  106. this.Controls.Add(this.numericUpDown1);
  107. this.Controls.Add(this.MainNumericUpDown);
  108. this.MaximizeBox = false;
  109. this.MinimizeBox = false;
  110. this.Name = "PocForm";
  111. this.Text = "PatchNumericUpDown";
  112. ((System.ComponentModel.ISupportInitialize)(this.MainNumericUpDown)).EndInit();
  113. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.NumericUpDown MainNumericUpDown;
  118. private System.Windows.Forms.Button SetButton;
  119. private System.Windows.Forms.Button PatchButton;
  120. private System.Windows.Forms.Button UnPatchButton;
  121. private System.Windows.Forms.NumericUpDown numericUpDown1;
  122. }
  123. }