diff options
author | sr55 <[email protected]> | 2007-10-14 16:58:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-14 16:58:01 +0000 |
commit | 6a429d65ab6a3fd1fddb87b206d410e2004b5411 (patch) | |
tree | 3fff7d210e206d4574573cfa80bddb982b5935d8 /win/C#/frmDvdInfo.Designer.cs | |
parent | 82ec8fc00a3181c19bc825bf64cf22f6c9e744ca (diff) |
WinGui:
- Change: All windows made sizeable
- Change: Queue / Media Info Windows now have titles + icon and appear correctly in the task bar.
- Change: Minimise box removed in Queue window in favour of the Windows default minimise button.
- Fixed: System requirements checker was not confirming the correct amount of ram.
- Removed: Code to handle CLI Information without text files. This can not work without all data going out via standard output which has been decided against.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1026 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmDvdInfo.Designer.cs')
-rw-r--r-- | win/C#/frmDvdInfo.Designer.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/win/C#/frmDvdInfo.Designer.cs b/win/C#/frmDvdInfo.Designer.cs index 25043b5b0..696ac9890 100644 --- a/win/C#/frmDvdInfo.Designer.cs +++ b/win/C#/frmDvdInfo.Designer.cs @@ -29,6 +29,7 @@ namespace Handbrake private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDvdInfo));
this.Label2 = new System.Windows.Forms.Label();
this.rtf_dvdInfo = new System.Windows.Forms.RichTextBox();
this.btn_close = new System.Windows.Forms.Button();
@@ -105,22 +106,20 @@ namespace Handbrake this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ClientSize = new System.Drawing.Size(547, 482);
- this.ControlBox = false;
+ this.ClientSize = new System.Drawing.Size(545, 493);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.Label2);
this.Controls.Add(this.rtf_dvdInfo);
this.Controls.Add(this.btn_close);
- 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(553, 520);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(553, 506);
this.Name = "frmDvdInfo";
- this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = " ";
+ this.Text = "Media Information";
this.Load += new System.EventHandler(this.frmDvdInfo_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
|