frmInputDecimal.Designer.cs.svn-base 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. namespace Core.LgMes.Client.LgJobMgt
  2. {
  3. partial class frmInputDecimal
  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.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.ultraCalculator1 = new Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator();
  31. ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(38, 226);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 1;
  40. this.button1.Text = "确定";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(141, 226);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(75, 23);
  49. this.button2.TabIndex = 2;
  50. this.button2.Text = "取消";
  51. this.button2.UseVisualStyleBackColor = true;
  52. this.button2.Click += new System.EventHandler(this.button2_Click);
  53. //
  54. // ultraCalculator1
  55. //
  56. this.ultraCalculator1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Etched;
  57. this.ultraCalculator1.Location = new System.Drawing.Point(0, -1);
  58. this.ultraCalculator1.Name = "ultraCalculator1";
  59. this.ultraCalculator1.Size = new System.Drawing.Size(256, 216);
  60. this.ultraCalculator1.TabIndex = 3;
  61. this.ultraCalculator1.Text = "0.";
  62. //
  63. // frmInputDecimal
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.BackColor = System.Drawing.Color.Gainsboro;
  68. this.ClientSize = new System.Drawing.Size(256, 262);
  69. this.Controls.Add(this.ultraCalculator1);
  70. this.Controls.Add(this.button2);
  71. this.Controls.Add(this.button1);
  72. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  73. this.Name = "frmInputDecimal";
  74. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  75. this.Text = "数字输入";
  76. this.Load += new System.EventHandler(this.frmInputDecimal_Load);
  77. ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).EndInit();
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private System.Windows.Forms.Button button1;
  82. private System.Windows.Forms.Button button2;
  83. private Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator ultraCalculator1;
  84. }
  85. }