diff --git a/AddBatchPageForm.cs b/AddBatchPageForm.cs index 84d7ac9..5df9a1e 100644 --- a/AddBatchPageForm.cs +++ b/AddBatchPageForm.cs @@ -50,9 +50,9 @@ namespace FizzyLauncher dialogFooter1 = new RyzStudio.Windows.ThemedForms.Composite.DialogFooter(); memoBox1 = new ThToolbarMemoBox(); SuspendLayout(); - // + // // label1 - // + // label1.AutoSize = true; label1.BackColor = System.Drawing.Color.Transparent; label1.ForeColor = System.Drawing.SystemColors.ControlText; @@ -64,14 +64,14 @@ namespace FizzyLauncher label1.TabIndex = 153; label1.Text = "Add pages (one URL on each line)"; label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // + // // tHorizontalSeparator3 - // + // tHorizontalSeparator3.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; tHorizontalSeparator3.AutoScrollMargin = new System.Drawing.Size(0, 0); tHorizontalSeparator3.AutoScrollMinSize = new System.Drawing.Size(0, 0); tHorizontalSeparator3.BackColor = System.Drawing.Color.Transparent; - tHorizontalSeparator3.Location = new System.Drawing.Point(10, 321); + tHorizontalSeparator3.Location = new System.Drawing.Point(10, 361); tHorizontalSeparator3.Margin = new Padding(0, 10, 0, 0); tHorizontalSeparator3.MaximumSize = new System.Drawing.Size(4920, 2); tHorizontalSeparator3.MinimumSize = new System.Drawing.Size(0, 22); @@ -79,9 +79,9 @@ namespace FizzyLauncher tHorizontalSeparator3.Size = new System.Drawing.Size(424, 22); tHorizontalSeparator3.TabIndex = 207; tHorizontalSeparator3.TabStop = false; - // + // // button3 - // + // button3.ActiveImage = null; button3.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; button3.BackColor = System.Drawing.Color.Transparent; @@ -90,45 +90,47 @@ namespace FizzyLauncher button3.HoverImage = null; button3.IdleImage = null; button3.LabelText = "&Add Pages"; - button3.Location = new System.Drawing.Point(306, 393); + button3.Location = new System.Drawing.Point(306, 433); button3.Name = "button3"; + button3.Padding = new Padding(4, 4, 3, 3); button3.Size = new System.Drawing.Size(128, 32); button3.TabIndex = 209; button3.TabStop = false; button3.MouseClick += button3_MouseClick; - // + // // progressBar2 - // + // progressBar2.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; progressBar2.BackColor = System.Drawing.Color.Transparent; progressBar2.BarColour = System.Drawing.Color.FromArgb(79, 193, 203); progressBar2.BarTextColour = System.Drawing.Color.Black; progressBar2.EnableReactiveVisual = false; progressBar2.Font = new System.Drawing.Font("Segoe UI", 9F); - progressBar2.Location = new System.Drawing.Point(10, 353); + progressBar2.Location = new System.Drawing.Point(10, 393); progressBar2.Maximum = 100; progressBar2.Minimum = 0; progressBar2.Name = "progressBar2"; + progressBar2.Padding = new Padding(4, 4, 3, 3); progressBar2.ProgressText = "50/100"; progressBar2.ShowProgressText = true; progressBar2.Size = new System.Drawing.Size(424, 20); progressBar2.TabIndex = 210; progressBar2.TabStop = false; progressBar2.Value = 50; - // + // // dialogFooter1 - // + // dialogFooter1.BackColor = System.Drawing.Color.FromArgb(240, 240, 240); dialogFooter1.Button1Text = "&Close"; dialogFooter1.Dialog = this; dialogFooter1.Dock = DockStyle.Bottom; dialogFooter1.IsBusy = false; - dialogFooter1.Location = new System.Drawing.Point(0, 437); + dialogFooter1.Location = new System.Drawing.Point(0, 477); dialogFooter1.Name = "dialogFooter1"; dialogFooter1.Size = new System.Drawing.Size(444, 84); - // + // // memoBox1 - // + // memoBox1.AllowDrop = true; memoBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; memoBox1.BackColor = System.Drawing.Color.Transparent; @@ -137,19 +139,20 @@ namespace FizzyLauncher memoBox1.Font = new System.Drawing.Font("Segoe UI", 9F); memoBox1.Location = new System.Drawing.Point(10, 53); memoBox1.Name = "memoBox1"; + memoBox1.Padding = new Padding(4, 4, 3, 3); memoBox1.ReadOnly = false; memoBox1.ScrollBars = ScrollBars.Vertical; - memoBox1.Size = new System.Drawing.Size(424, 258); + memoBox1.Size = new System.Drawing.Size(424, 298); memoBox1.TabIndex = 211; memoBox1.TabStop = false; memoBox1.WordWrap = false; - // + // // AddBatchPageForm - // + // AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackColor = System.Drawing.Color.White; - ClientSize = new System.Drawing.Size(444, 521); + ClientSize = new System.Drawing.Size(444, 561); Controls.Add(memoBox1); Controls.Add(dialogFooter1); Controls.Add(progressBar2); @@ -157,7 +160,7 @@ namespace FizzyLauncher Controls.Add(tHorizontalSeparator3); Controls.Add(label1); KeyPreview = true; - MinimumSize = new System.Drawing.Size(460, 560); + MinimumSize = new System.Drawing.Size(460, 600); Name = "AddBatchPageForm"; Text = "Add Pages (Batch)"; ResumeLayout(false); diff --git a/BookmarkManager.csproj b/BookmarkManager.csproj index ec5f688..51065c0 100644 --- a/BookmarkManager.csproj +++ b/BookmarkManager.csproj @@ -14,7 +14,7 @@ Ray Lam 1.0.0.0 1.0.0.0 - 0.6.4.140 + 0.6.5.144 bukkubuddy True 8.0 @@ -123,8 +123,8 @@ - - + + \ No newline at end of file diff --git a/EditBookmarkForm.cs b/EditBookmarkForm.cs index 9cc8365..69f8310 100644 --- a/EditBookmarkForm.cs +++ b/EditBookmarkForm.cs @@ -26,12 +26,12 @@ namespace FizzyLauncher private System.ComponentModel.IContainer components; private ThClearableTextBox textBox3; private ThUserControl thUserControl1; - private Label label5; private readonly WebProvider _webProvider; private BookmarkModel result = null; private RyzStudio.Windows.ThemedForms.Composite.DialogFooter dialogFooter1; + private THorizontalSeparator tHorizontalSeparator1; private bool _isBusy = false; @@ -88,18 +88,17 @@ namespace FizzyLauncher pictureBox1 = new PictureBox(); toolTip1 = new ToolTip(components); textBox3 = new ThClearableTextBox(); - thUserControl1 = new ThUserControl(); - label5 = new Label(); dialogFooter1 = new RyzStudio.Windows.ThemedForms.Composite.DialogFooter(); + tHorizontalSeparator1 = new THorizontalSeparator(); ((ISupportInitialize)pictureBox1).BeginInit(); SuspendLayout(); - // + // // label1 - // + // label1.AutoSize = true; label1.BackColor = Color.Transparent; label1.ForeColor = SystemColors.ControlText; - label1.Location = new Point(10, 21); + label1.Location = new Point(9, 21); label1.Margin = new Padding(0); label1.Name = "label1"; label1.Padding = new Padding(0, 8, 0, 0); @@ -107,9 +106,9 @@ namespace FizzyLauncher label1.TabIndex = 153; label1.Text = "Title"; label1.TextAlign = ContentAlignment.MiddleLeft; - // + // // textBox1 - // + // textBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; textBox1.BackColor = Color.Transparent; textBox1.ClearedValue = ""; @@ -117,19 +116,20 @@ namespace FizzyLauncher textBox1.Font = new Font("Segoe UI", 9F); textBox1.Icon = "O"; textBox1.IconSize = 13F; - textBox1.Location = new Point(109, 20); + textBox1.Location = new Point(115, 20); textBox1.Name = "textBox1"; - textBox1.Size = new Size(260, 32); + textBox1.Padding = new Padding(4, 4, 3, 3); + textBox1.Size = new Size(314, 32); textBox1.TabIndex = 0; textBox1.TabStop = false; textBox1.UseSystemPasswordChar = false; - // + // // label2 - // + // label2.AutoSize = true; label2.BackColor = Color.Transparent; label2.ForeColor = SystemColors.ControlText; - label2.Location = new Point(10, 61); + label2.Location = new Point(9, 61); label2.Margin = new Padding(0); label2.Name = "label2"; label2.Padding = new Padding(0, 8, 0, 0); @@ -137,13 +137,13 @@ namespace FizzyLauncher label2.TabIndex = 193; label2.Text = "Address"; label2.TextAlign = ContentAlignment.MiddleLeft; - // + // // label3 - // + // label3.AutoSize = true; label3.BackColor = Color.Transparent; label3.ForeColor = SystemColors.ControlText; - label3.Location = new Point(10, 104); + label3.Location = new Point(9, 104); label3.Margin = new Padding(0); label3.Name = "label3"; label3.Padding = new Padding(0, 8, 0, 0); @@ -151,30 +151,31 @@ namespace FizzyLauncher label3.TabIndex = 195; label3.Text = "Description"; label3.TextAlign = ContentAlignment.MiddleLeft; - // + // // memoBox1 - // + // memoBox1.AllowDrop = true; memoBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; memoBox1.BackColor = Color.Transparent; memoBox1.ClearedValue = ""; memoBox1.EnableReactiveVisual = true; memoBox1.Font = new Font("Segoe UI", 9F); - memoBox1.Location = new Point(110, 196); + memoBox1.Location = new Point(87, 166); memoBox1.Name = "memoBox1"; + memoBox1.Padding = new Padding(4, 4, 3, 3); memoBox1.ReadOnly = false; memoBox1.ScrollBars = ScrollBars.Vertical; - memoBox1.Size = new Size(259, 232); + memoBox1.Size = new Size(342, 302); memoBox1.TabIndex = 3; memoBox1.TabStop = false; memoBox1.WordWrap = false; - // + // // label4 - // + // label4.AutoSize = true; label4.BackColor = Color.Transparent; label4.ForeColor = SystemColors.ControlText; - label4.Location = new Point(10, 196); + label4.Location = new Point(9, 166); label4.Margin = new Padding(0); label4.Name = "label4"; label4.Padding = new Padding(0, 8, 0, 0); @@ -182,29 +183,30 @@ namespace FizzyLauncher label4.TabIndex = 198; label4.Text = "Notes"; label4.TextAlign = ContentAlignment.MiddleLeft; - // + // // textBox2 - // + // textBox2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; textBox2.BackColor = Color.Transparent; textBox2.EnableReactiveVisual = true; textBox2.Font = new Font("Segoe UI", 9F); textBox2.Icon = "M"; textBox2.IconSize = 13F; - textBox2.Location = new Point(110, 62); + textBox2.Location = new Point(98, 62); textBox2.Name = "textBox2"; - textBox2.Size = new Size(259, 32); + textBox2.Padding = new Padding(4, 4, 3, 3); + textBox2.Size = new Size(331, 32); textBox2.TabIndex = 1; textBox2.TabStop = false; textBox2.UseSystemPasswordChar = false; textBox2.OnButtonClick += textBox2_OnButtonClick; - // + // // pictureBox1 - // + // pictureBox1.BackColor = Color.White; pictureBox1.ErrorImage = null; pictureBox1.InitialImage = null; - pictureBox1.Location = new Point(113, 150); + pictureBox1.Location = new Point(78, 20); pictureBox1.Name = "pictureBox1"; pictureBox1.Size = new Size(32, 32); pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage; @@ -212,9 +214,9 @@ namespace FizzyLauncher pictureBox1.TabStop = false; pictureBox1.MouseClick += pictureBox1_MouseClick; pictureBox1.MouseDoubleClick += pictureBox1_MouseDoubleClick; - // + // // textBox3 - // + // textBox3.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; textBox3.BackColor = Color.Transparent; textBox3.ClearedValue = ""; @@ -222,68 +224,57 @@ namespace FizzyLauncher textBox3.Font = new Font("Segoe UI", 9F); textBox3.Icon = "O"; textBox3.IconSize = 13F; - textBox3.Location = new Point(109, 104); + textBox3.Location = new Point(116, 104); textBox3.Name = "textBox3"; - textBox3.Size = new Size(260, 32); + textBox3.Padding = new Padding(4, 4, 3, 3); + textBox3.Size = new Size(313, 32); textBox3.TabIndex = 203; textBox3.TabStop = false; textBox3.UseSystemPasswordChar = false; - // - // thUserControl1 - // - thUserControl1.BackColor = Color.Transparent; - thUserControl1.EnableReactiveVisual = true; - thUserControl1.Location = new Point(109, 146); - thUserControl1.Name = "thUserControl1"; - thUserControl1.Size = new Size(40, 40); - thUserControl1.TabIndex = 204; - thUserControl1.TabStop = false; - // - // label5 - // - label5.AutoSize = true; - label5.BackColor = Color.Transparent; - label5.ForeColor = SystemColors.ControlText; - label5.Location = new Point(10, 146); - label5.Margin = new Padding(0); - label5.Name = "label5"; - label5.Padding = new Padding(0, 8, 0, 0); - label5.Size = new Size(30, 23); - label5.TabIndex = 195; - label5.Text = "Icon"; - label5.TextAlign = ContentAlignment.MiddleLeft; - // + // // dialogFooter1 - // + // dialogFooter1.BackColor = Color.FromArgb(240, 240, 240); dialogFooter1.Button1Text = "&OK"; dialogFooter1.Dialog = this; dialogFooter1.Dock = DockStyle.Bottom; dialogFooter1.IsBusy = false; - dialogFooter1.Location = new Point(0, 437); + dialogFooter1.Location = new Point(0, 477); dialogFooter1.Name = "dialogFooter1"; - dialogFooter1.Size = new Size(384, 84); - // + dialogFooter1.Size = new Size(444, 84); + // + // tHorizontalSeparator1 + // + tHorizontalSeparator1.AutoScrollMargin = new Size(0, 0); + tHorizontalSeparator1.AutoScrollMinSize = new Size(0, 0); + tHorizontalSeparator1.BackColor = Color.Transparent; + tHorizontalSeparator1.Location = new Point(9, 139); + tHorizontalSeparator1.MaximumSize = new Size(3840, 22); + tHorizontalSeparator1.MinimumSize = new Size(0, 22); + tHorizontalSeparator1.Name = "tHorizontalSeparator1"; + tHorizontalSeparator1.Size = new Size(423, 22); + tHorizontalSeparator1.TabIndex = 209; + tHorizontalSeparator1.TabStop = false; + // // EditBookmarkForm - // + // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.White; - ClientSize = new Size(384, 521); + ClientSize = new Size(444, 561); + Controls.Add(tHorizontalSeparator1); + Controls.Add(pictureBox1); Controls.Add(dialogFooter1); Controls.Add(textBox3); - Controls.Add(pictureBox1); Controls.Add(textBox2); Controls.Add(memoBox1); Controls.Add(label4); - Controls.Add(label5); Controls.Add(label3); Controls.Add(label2); Controls.Add(textBox1); Controls.Add(label1); - Controls.Add(thUserControl1); KeyPreview = true; - MinimumSize = new Size(400, 560); + MinimumSize = new Size(460, 600); Name = "EditBookmarkForm"; Text = "Edit Bookmark"; ((ISupportInitialize)pictureBox1).EndInit(); diff --git a/EditBookmarkForm.resx b/EditBookmarkForm.resx index 2704a16..dcfd08d 100644 --- a/EditBookmarkForm.resx +++ b/EditBookmarkForm.resx @@ -1,7 +1,7 @@