Fixed issue with welcome message and changed the style of some elements

This commit is contained in:
Swee 2024-07-29 21:48:58 -07:00
parent 4a343b346f
commit 99eeee9260
2 changed files with 12 additions and 7 deletions

16
Form1.Designer.cs generated
View file

@ -157,12 +157,14 @@
groupBox4.Controls.Add(progressBar1); groupBox4.Controls.Add(progressBar1);
groupBox4.Controls.Add(button4); groupBox4.Controls.Add(button4);
groupBox4.Dock = DockStyle.Fill; groupBox4.Dock = DockStyle.Fill;
groupBox4.FlatStyle = FlatStyle.System;
groupBox4.Location = new Point(0, 91); groupBox4.Location = new Point(0, 91);
groupBox4.Name = "groupBox4"; groupBox4.Name = "groupBox4";
groupBox4.Size = new Size(800, 378); groupBox4.Size = new Size(800, 378);
groupBox4.TabIndex = 3; groupBox4.TabIndex = 3;
groupBox4.TabStop = false; groupBox4.TabStop = false;
groupBox4.Text = "Preview"; groupBox4.Text = "Preview";
groupBox4.UseCompatibleTextRendering = true;
groupBox4.Enter += groupBox4_Enter; groupBox4.Enter += groupBox4_Enter;
// //
// chromiumWebBrowser1 // chromiumWebBrowser1
@ -188,7 +190,7 @@
// //
button4.Dock = DockStyle.Top; button4.Dock = DockStyle.Top;
button4.Enabled = false; button4.Enabled = false;
button4.FlatStyle = FlatStyle.System; button4.FlatStyle = FlatStyle.Flat;
button4.Location = new Point(3, 19); button4.Location = new Point(3, 19);
button4.Name = "button4"; button4.Name = "button4";
button4.Size = new Size(794, 23); button4.Size = new Size(794, 23);
@ -202,7 +204,7 @@
button3.BackColor = Color.Transparent; button3.BackColor = Color.Transparent;
button3.Dock = DockStyle.Bottom; button3.Dock = DockStyle.Bottom;
button3.Enabled = false; button3.Enabled = false;
button3.FlatStyle = FlatStyle.System; button3.FlatStyle = FlatStyle.Flat;
button3.Location = new Point(0, 469); button3.Location = new Point(0, 469);
button3.Name = "button3"; button3.Name = "button3";
button3.Size = new Size(800, 23); button3.Size = new Size(800, 23);
@ -216,6 +218,7 @@
groupBox3.Controls.Add(button2); groupBox3.Controls.Add(button2);
groupBox3.Controls.Add(textBox2); groupBox3.Controls.Add(textBox2);
groupBox3.Dock = DockStyle.Top; groupBox3.Dock = DockStyle.Top;
groupBox3.FlatStyle = FlatStyle.System;
groupBox3.Location = new Point(0, 24); groupBox3.Location = new Point(0, 24);
groupBox3.Name = "groupBox3"; groupBox3.Name = "groupBox3";
groupBox3.Size = new Size(800, 67); groupBox3.Size = new Size(800, 67);
@ -226,10 +229,10 @@
// button2 // button2
// //
button2.Dock = DockStyle.Fill; button2.Dock = DockStyle.Fill;
button2.FlatStyle = FlatStyle.System; button2.FlatStyle = FlatStyle.Flat;
button2.Location = new Point(3, 42); button2.Location = new Point(3, 35);
button2.Name = "button2"; button2.Name = "button2";
button2.Size = new Size(794, 22); button2.Size = new Size(794, 29);
button2.TabIndex = 3; button2.TabIndex = 3;
button2.Text = "Select file"; button2.Text = "Select file";
button2.UseVisualStyleBackColor = true; button2.UseVisualStyleBackColor = true;
@ -237,11 +240,12 @@
// //
// textBox2 // textBox2
// //
textBox2.BorderStyle = BorderStyle.None;
textBox2.Dock = DockStyle.Top; textBox2.Dock = DockStyle.Top;
textBox2.Location = new Point(3, 19); textBox2.Location = new Point(3, 19);
textBox2.Name = "textBox2"; textBox2.Name = "textBox2";
textBox2.PlaceholderText = "Type path or select file below. "; textBox2.PlaceholderText = "Type path or select file below. ";
textBox2.Size = new Size(794, 23); textBox2.Size = new Size(794, 16);
textBox2.TabIndex = 2; textBox2.TabIndex = 2;
textBox2.TextChanged += textBox2_TextChanged; textBox2.TextChanged += textBox2_TextChanged;
// //

View file

@ -270,7 +270,8 @@ border-width: 1px
html{ html{
font-family: sans-serif font-family: sans-serif
}" + csssuffix; }" + csssuffix;
chromiumWebBrowser1.LoadHtml(css + "<center>" + logo + htmlfile); htmlfile = "<center>" + logo + htmlfile;
chromiumWebBrowser1.LoadHtml(css + htmlfile);
} }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) private void aboutToolStripMenuItem_Click(object sender, EventArgs e)