frmInputDecimal.Designer.cs 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace Core.StlMes.Client.LgCommon
  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.btnOK = new System.Windows.Forms.Button();
  29. this.btnCancel = 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. // btnOK
  35. //
  36. this.btnOK.Location = new System.Drawing.Point(45, 226);
  37. this.btnOK.Name = "btnOK";
  38. this.btnOK.Size = new System.Drawing.Size(75, 23);
  39. this.btnOK.TabIndex = 0;
  40. this.btnOK.Text = "确定";
  41. this.btnOK.UseVisualStyleBackColor = true;
  42. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  43. //
  44. // btnCancel
  45. //
  46. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  47. this.btnCancel.Location = new System.Drawing.Point(136, 226);
  48. this.btnCancel.Name = "btnCancel";
  49. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  50. this.btnCancel.TabIndex = 1;
  51. this.btnCancel.Text = "取消";
  52. this.btnCancel.UseVisualStyleBackColor = true;
  53. //
  54. // ultraCalculator1
  55. //
  56. this.ultraCalculator1.AutoDetectGroupSymbol = false;
  57. this.ultraCalculator1.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
  58. this.ultraCalculator1.GroupSymbol = "";
  59. this.ultraCalculator1.Location = new System.Drawing.Point(0, -1);
  60. this.ultraCalculator1.Name = "ultraCalculator1";
  61. this.ultraCalculator1.Size = new System.Drawing.Size(256, 216);
  62. this.ultraCalculator1.TabIndex = 2;
  63. this.ultraCalculator1.Text = "0";
  64. //
  65. // frmInputDecimal
  66. //
  67. this.AcceptButton = this.btnOK;
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(228)))), ((int)(((byte)(225)))));
  71. this.CancelButton = this.btnCancel;
  72. this.ClientSize = new System.Drawing.Size(256, 262);
  73. this.Controls.Add(this.ultraCalculator1);
  74. this.Controls.Add(this.btnCancel);
  75. this.Controls.Add(this.btnOK);
  76. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  77. this.MaximizeBox = false;
  78. this.MinimizeBox = false;
  79. this.Name = "frmInputDecimal";
  80. this.ShowInTaskbar = false;
  81. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  82. this.Text = "数字输入";
  83. this.TopMost = true;
  84. ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).EndInit();
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private System.Windows.Forms.Button btnOK;
  89. private System.Windows.Forms.Button btnCancel;
  90. private Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator ultraCalculator1;
  91. }
  92. }