| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace Core.LgMes.Client.Comm
- {
- partial class frmInputDecimal
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.ultraCalculator1 = new Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).BeginInit();
- this.SuspendLayout();
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(38, 226);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 1;
- this.button1.Text = "确定";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(141, 226);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(75, 23);
- this.button2.TabIndex = 2;
- this.button2.Text = "取消";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // ultraCalculator1
- //
- this.ultraCalculator1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Etched;
- this.ultraCalculator1.Location = new System.Drawing.Point(0, -1);
- this.ultraCalculator1.Name = "ultraCalculator1";
- this.ultraCalculator1.Size = new System.Drawing.Size(256, 216);
- this.ultraCalculator1.TabIndex = 3;
- this.ultraCalculator1.Text = "0.";
- //
- // frmInputDecimal
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gainsboro;
- this.ClientSize = new System.Drawing.Size(256, 262);
- this.Controls.Add(this.ultraCalculator1);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.Name = "frmInputDecimal";
- this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
- this.Text = "数字输入";
- this.Load += new System.EventHandler(this.frmInputDecimal_Load);
- ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator ultraCalculator1;
- }
- }
|