| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace Core.StlMes.Client.LgCommon
- {
- 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.btnOK = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.ultraCalculator1 = new Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).BeginInit();
- this.SuspendLayout();
- //
- // btnOK
- //
- this.btnOK.Location = new System.Drawing.Point(45, 226);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 0;
- this.btnOK.Text = "确定";
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(136, 226);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 1;
- this.btnCancel.Text = "取消";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // ultraCalculator1
- //
- this.ultraCalculator1.AutoDetectGroupSymbol = false;
- this.ultraCalculator1.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
- this.ultraCalculator1.GroupSymbol = "";
- 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 = 2;
- this.ultraCalculator1.Text = "0";
- //
- // frmInputDecimal
- //
- this.AcceptButton = this.btnOK;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(228)))), ((int)(((byte)(225)))));
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(256, 262);
- this.Controls.Add(this.ultraCalculator1);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnOK);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "frmInputDecimal";
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
- this.Text = "数字输入";
- this.TopMost = true;
- ((System.ComponentModel.ISupportInitialize)(this.ultraCalculator1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Button btnCancel;
- private Infragistics.Win.UltraWinEditors.UltraWinCalc.UltraCalculator ultraCalculator1;
- }
- }
|