- on initial rendering mono likes to send a resize event where the width is 0, ignore it. This was causing gbDatInfo to not render until a manual resize was done. - set AutoScaleMode to System.Windows.Forms.AutoScaleMode.None. This fixes a number of rendering issues under mono and didnt seem to have any negative effect under c#/windows builds. - tweak some of the initial form sizes and locations on FrmMain. A number of the setting didnt make sense based on the size of the panel they were put it. This resolves an issue with the gbDatInfo and gbSetInfo starting off with the wrong size under mono.
98 lines
4.4 KiB
C#
98 lines
4.4 KiB
C#
namespace ROMVault2
|
|
{
|
|
partial class FrmHelpAbout
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.lblVersion = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblVersion
|
|
//
|
|
this.lblVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lblVersion.Location = new System.Drawing.Point(12, 115);
|
|
this.lblVersion.Name = "lblVersion";
|
|
this.lblVersion.Size = new System.Drawing.Size(445, 15);
|
|
this.lblVersion.TabIndex = 6;
|
|
this.lblVersion.Text = "label1";
|
|
this.lblVersion.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.ForeColor = System.Drawing.Color.Blue;
|
|
this.label1.Location = new System.Drawing.Point(279, 142);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(178, 16);
|
|
this.label1.TabIndex = 7;
|
|
this.label1.Text = "http://www.romvault.com/";
|
|
this.label1.Click += new System.EventHandler(this.label1_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label2.ForeColor = System.Drawing.Color.Blue;
|
|
this.label2.Location = new System.Drawing.Point(12, 142);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(167, 16);
|
|
this.label2.TabIndex = 8;
|
|
this.label2.Text = "support@romvault.com";
|
|
this.label2.Click += new System.EventHandler(this.label2_Click);
|
|
//
|
|
// FrmHelpAbout
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.BackgroundImage = global::ROMVault2.rvImages.romvaultTZ;
|
|
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
|
|
this.ClientSize = new System.Drawing.Size(471, 172);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.lblVersion);
|
|
this.DoubleBuffered = true;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "FrmHelpAbout";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "FrmHelpAbout";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblVersion;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
}
|
|
}
|