diff options
author | brianmario <[email protected]> | 2007-07-19 03:46:40 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-19 03:46:40 +0000 |
commit | 5a85699f791f49ea7643ec2335d919d152410652 (patch) | |
tree | c86fd1ac50e4e70b1bebc02389111457aed3fd84 /win/C#/frmAbout.Designer.cs | |
parent | 34ec0f7cfb452f851cd2e59278b19ba724c50fa6 (diff) |
WinGui:
misc UI control placement changes
updates to some FormBorderStyle's
converted Parsing code to use regex instead of substrings and string splitting
added a couple of additional code comments
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@715 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAbout.Designer.cs')
-rw-r--r-- | win/C#/frmAbout.Designer.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/C#/frmAbout.Designer.cs b/win/C#/frmAbout.Designer.cs index a918afd9a..8a0180563 100644 --- a/win/C#/frmAbout.Designer.cs +++ b/win/C#/frmAbout.Designer.cs @@ -55,7 +55,7 @@ namespace Handbrake this.btn_close.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btn_close.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btn_close.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
- this.btn_close.Location = new System.Drawing.Point(415, 229);
+ this.btn_close.Location = new System.Drawing.Point(415, 218);
this.btn_close.Name = "btn_close";
this.btn_close.Size = new System.Drawing.Size(99, 22);
this.btn_close.TabIndex = 27;
@@ -117,9 +117,10 @@ namespace Handbrake //
// frmAbout
//
+ this.AcceptButton = this.btn_close;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(526, 259);
+ this.ClientSize = new System.Drawing.Size(526, 252);
this.Controls.Add(this.Label4);
this.Controls.Add(this.btn_close);
this.Controls.Add(this.Version);
@@ -127,8 +128,9 @@ namespace Handbrake this.Controls.Add(this.Label2);
this.Controls.Add(this.PictureBox1);
this.Controls.Add(this.Label1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(532, 284);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(532, 284);
|