mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Minor design changes
This commit is contained in:
parent
16b43e5d87
commit
9dd75fa5c2
2 changed files with 23 additions and 22 deletions
44
Crypto Notepad/AboutFrom.Designer.cs
generated
44
Crypto Notepad/AboutFrom.Designer.cs
generated
|
|
@ -36,8 +36,8 @@ private void InitializeComponent()
|
|||
this.LicenseLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.GithubLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.ContributorsLabel = new System.Windows.Forms.Label();
|
||||
this.TPDRichTextBox = new Crypto_Notepad.ExRichTextBox();
|
||||
this.ContributorsRichTextBox = new Crypto_Notepad.ExRichTextBox();
|
||||
this.TPDRichTextBox = new Crypto_Notepad.ExRichTextBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.AppLogoPictureBox)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
|
|
@ -142,25 +142,6 @@ private void InitializeComponent()
|
|||
this.ContributorsLabel.TabIndex = 4;
|
||||
this.ContributorsLabel.Text = "Contributors:";
|
||||
//
|
||||
// TPDRichTextBox
|
||||
//
|
||||
this.TPDRichTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(50)))));
|
||||
this.TPDRichTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.TPDRichTextBox.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.TPDRichTextBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.TPDRichTextBox.ForeColor = System.Drawing.Color.White;
|
||||
this.TPDRichTextBox.Location = new System.Drawing.Point(0, 181);
|
||||
this.TPDRichTextBox.Name = "TPDRichTextBox";
|
||||
this.TPDRichTextBox.ReadOnly = true;
|
||||
this.TPDRichTextBox.RightMargin = 700;
|
||||
this.TPDRichTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Horizontal;
|
||||
this.TPDRichTextBox.ShowSelectionMargin = true;
|
||||
this.TPDRichTextBox.Size = new System.Drawing.Size(397, 103);
|
||||
this.TPDRichTextBox.TabIndex = 10;
|
||||
this.TPDRichTextBox.Text = resources.GetString("TPDRichTextBox.Text");
|
||||
this.TPDRichTextBox.WordWrap = false;
|
||||
this.TPDRichTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.TPDRichTextBox_LinkClicked);
|
||||
//
|
||||
// ContributorsRichTextBox
|
||||
//
|
||||
this.ContributorsRichTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(50)))));
|
||||
|
|
@ -179,6 +160,25 @@ private void InitializeComponent()
|
|||
this.ContributorsRichTextBox.WordWrap = false;
|
||||
this.ContributorsRichTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.ContributorsRichTextBox_LinkClicked);
|
||||
//
|
||||
// TPDRichTextBox
|
||||
//
|
||||
this.TPDRichTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(50)))));
|
||||
this.TPDRichTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.TPDRichTextBox.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.TPDRichTextBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.TPDRichTextBox.ForeColor = System.Drawing.Color.White;
|
||||
this.TPDRichTextBox.Location = new System.Drawing.Point(0, 184);
|
||||
this.TPDRichTextBox.Name = "TPDRichTextBox";
|
||||
this.TPDRichTextBox.ReadOnly = true;
|
||||
this.TPDRichTextBox.RightMargin = 700;
|
||||
this.TPDRichTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal;
|
||||
this.TPDRichTextBox.ShowSelectionMargin = true;
|
||||
this.TPDRichTextBox.Size = new System.Drawing.Size(397, 100);
|
||||
this.TPDRichTextBox.TabIndex = 10;
|
||||
this.TPDRichTextBox.Text = resources.GetString("TPDRichTextBox.Text");
|
||||
this.TPDRichTextBox.WordWrap = false;
|
||||
this.TPDRichTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.TPDRichTextBox_LinkClicked);
|
||||
//
|
||||
// AboutFrom
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
@ -218,7 +218,7 @@ private void InitializeComponent()
|
|||
private System.Windows.Forms.LinkLabel LicenseLinkLabel;
|
||||
private System.Windows.Forms.LinkLabel GithubLinkLabel;
|
||||
private System.Windows.Forms.Label ContributorsLabel;
|
||||
private System.Windows.Forms.RichTextBox TPDRichTextBox;
|
||||
private System.Windows.Forms.RichTextBox ContributorsRichTextBox;
|
||||
private ExRichTextBox TPDRichTextBox;
|
||||
private ExRichTextBox ContributorsRichTextBox;
|
||||
}
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@ public AboutFrom()
|
|||
InitializeComponent();
|
||||
}
|
||||
|
||||
|
||||
/*Form Events*/
|
||||
private void AboutWindow_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue