--- trunk/Win32/libWin32/Win32/UI/IEEE754FloatConverter.Designer.cs 2012/06/02 14:29:00 225 +++ trunk/Win32/libWin32/Win32/UI/IEEE754FloatConverter.Designer.cs 2012/06/02 14:54:17 226 @@ -32,11 +32,11 @@ namespace System.Windows.Forms this.grpIEEE754Converter = new System.Windows.Forms.GroupBox(); this.grpIEEE754Converter_flow = new System.Windows.Forms.FlowLayoutPanel(); this.lblIEEE754Float = new System.Windows.Forms.Label(); + this.txtIEEE754Float = new System.Windows.Forms.MaskedHexBox(); this.btnConvertToFloat = new System.Windows.Forms.Button(); this.lblFloat = new System.Windows.Forms.Label(); - this.btnConvertToIEEE754Float = new System.Windows.Forms.Button(); - this.txtIEEE754Float = new System.Windows.Forms.MaskedHexBox(); this.txtFloat = new System.Windows.Forms.FloatBox(); + this.btnConvertToIEEE754Float = new System.Windows.Forms.Button(); this.grpIEEE754Converter.SuspendLayout(); this.grpIEEE754Converter_flow.SuspendLayout(); this.SuspendLayout(); @@ -77,6 +77,22 @@ namespace System.Windows.Forms this.lblIEEE754Float.TabIndex = 1; this.lblIEEE754Float.Text = " Hex:"; // + // txtIEEE754Float + // + this.txtIEEE754Float.AutoSize = true; + this.txtIEEE754Float.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.txtIEEE754Float.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtIEEE754Float.isAddressMask = true; + this.txtIEEE754Float.Location = new System.Drawing.Point(79, 4); + this.txtIEEE754Float.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.txtIEEE754Float.MaxLength = 8; + this.txtIEEE754Float.Name = "txtIEEE754Float"; + this.txtIEEE754Float.ReadOnly = false; + this.txtIEEE754Float.Size = new System.Drawing.Size(184, 26); + this.txtIEEE754Float.TabIndex = 0; + this.txtIEEE754Float.TextLength = 8; + this.txtIEEE754Float.Value = ((ulong)(0ul)); + // // btnConvertToFloat // this.grpIEEE754Converter_flow.SetFlowBreak(this.btnConvertToFloat, true); @@ -91,41 +107,17 @@ namespace System.Windows.Forms // lblFloat // this.lblFloat.AutoSize = true; - this.lblFloat.Location = new System.Drawing.Point(3, 40); + this.lblFloat.Location = new System.Drawing.Point(3, 34); this.lblFloat.Name = "lblFloat"; this.lblFloat.Size = new System.Drawing.Size(68, 18); this.lblFloat.TabIndex = 2; this.lblFloat.Text = "Float:"; // - // btnConvertToIEEE754Float - // - this.btnConvertToIEEE754Float.Location = new System.Drawing.Point(266, 43); - this.btnConvertToIEEE754Float.Name = "btnConvertToIEEE754Float"; - this.btnConvertToIEEE754Float.Size = new System.Drawing.Size(88, 23); - this.btnConvertToIEEE754Float.TabIndex = 4; - this.btnConvertToIEEE754Float.Text = "Convert"; - this.btnConvertToIEEE754Float.UseVisualStyleBackColor = true; - this.btnConvertToIEEE754Float.Click += new System.EventHandler(this.btnConvertToIEEE754Float_Click); - // - // txtIEEE754Float - // - this.txtIEEE754Float.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txtIEEE754Float.isAddressMask = true; - this.txtIEEE754Float.Location = new System.Drawing.Point(79, 4); - this.txtIEEE754Float.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); - this.txtIEEE754Float.MaxLength = 8; - this.txtIEEE754Float.Name = "txtIEEE754Float"; - this.txtIEEE754Float.ReadOnly = false; - this.txtIEEE754Float.Size = new System.Drawing.Size(184, 32); - this.txtIEEE754Float.TabIndex = 0; - this.txtIEEE754Float.TextLength = 8; - this.txtIEEE754Float.Value = ((ulong)(0ul)); - // // txtFloat // this.txtFloat.AutoSize = true; this.txtFloat.Font = new System.Drawing.Font("Courier New", 12F); - this.txtFloat.Location = new System.Drawing.Point(74, 40); + this.txtFloat.Location = new System.Drawing.Point(74, 34); this.txtFloat.Margin = new System.Windows.Forms.Padding(0); this.txtFloat.Name = "txtFloat"; this.txtFloat.ReadOnly = false; @@ -133,6 +125,16 @@ namespace System.Windows.Forms this.txtFloat.TabIndex = 6; this.txtFloat.Value = "0"; // + // btnConvertToIEEE754Float + // + this.btnConvertToIEEE754Float.Location = new System.Drawing.Point(266, 37); + this.btnConvertToIEEE754Float.Name = "btnConvertToIEEE754Float"; + this.btnConvertToIEEE754Float.Size = new System.Drawing.Size(88, 23); + this.btnConvertToIEEE754Float.TabIndex = 4; + this.btnConvertToIEEE754Float.Text = "Convert"; + this.btnConvertToIEEE754Float.UseVisualStyleBackColor = true; + this.btnConvertToIEEE754Float.Click += new System.EventHandler(this.btnConvertToIEEE754Float_Click); + // // IEEE754FloatConverter // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |