2024-07-17 00:56:17 +00:00
|
|
|
|
using System;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
using System.ComponentModel;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
using System.Drawing;
|
2024-08-04 01:47:25 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using BookmarkManager.Services;
|
|
|
|
|
using bzit.bomg.Models;
|
|
|
|
|
using RyzStudio.Windows.Forms;
|
|
|
|
|
using RyzStudio.Windows.ThemedForms;
|
|
|
|
|
using RyzStudio.Windows.ThemedForms.ButtonTextBox;
|
|
|
|
|
|
|
|
|
|
namespace FizzyLauncher
|
|
|
|
|
{
|
2024-07-20 17:09:44 +00:00
|
|
|
|
public class EditBookmarkForm : Form
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
|
|
|
private ThClearableTextBox textBox1;
|
|
|
|
|
private Label label2;
|
|
|
|
|
private Label label3;
|
|
|
|
|
private ThToolbarMemoBox memoBox1;
|
|
|
|
|
private Label label4;
|
|
|
|
|
private ThHiButtonTextBox textBox2;
|
|
|
|
|
private PictureBox pictureBox1;
|
|
|
|
|
private ToolTip toolTip1;
|
|
|
|
|
private System.ComponentModel.IContainer components;
|
|
|
|
|
private ThClearableTextBox textBox3;
|
|
|
|
|
private ThUserControl thUserControl1;
|
|
|
|
|
private Label label5;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private readonly WebProvider _webProvider;
|
|
|
|
|
private BookmarkModel result = null;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
private RyzStudio.Windows.ThemedForms.Composite.DialogFooter dialogFooter1;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
private bool _isBusy = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public EditBookmarkForm(BookmarkModel model = null)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
2024-07-20 17:09:44 +00:00
|
|
|
|
UISetup.Dialog(this);
|
2024-07-17 00:56:17 +00:00
|
|
|
|
|
2024-07-20 17:09:44 +00:00
|
|
|
|
this.Text = (result == null) ? "Add Bookmark" : "Edit Bookmark";
|
2024-07-17 00:56:17 +00:00
|
|
|
|
|
|
|
|
|
result = model;
|
|
|
|
|
|
2024-07-20 17:09:44 +00:00
|
|
|
|
_webProvider = new WebProvider();
|
|
|
|
|
_webProvider.IgnoreSSL = true;
|
|
|
|
|
|
2024-07-17 00:56:17 +00:00
|
|
|
|
if (result != null)
|
|
|
|
|
{
|
|
|
|
|
textBox1.Text = model.Title?.Trim() ?? string.Empty;
|
|
|
|
|
textBox2.Text = model.Address?.Trim() ?? string.Empty;
|
|
|
|
|
textBox3.Text = model.Description?.Trim() ?? string.Empty;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-08-04 03:11:19 +00:00
|
|
|
|
if (model.Icon != null)
|
2024-08-04 01:47:25 +00:00
|
|
|
|
{
|
2024-08-04 03:11:19 +00:00
|
|
|
|
if (model.Icon.Width > 16)
|
|
|
|
|
{
|
|
|
|
|
model.Icon = RyzStudio.Drawing.ImageEditor.Resize(model.Icon, 16, 16);
|
|
|
|
|
}
|
2024-08-04 01:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 17:09:44 +00:00
|
|
|
|
pictureBox1.Image = model.Icon;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
pictureBox1.Image = model.Icon = null;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-17 00:56:17 +00:00
|
|
|
|
memoBox1.Text = model.Notes?.Trim() ?? string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
2024-07-21 17:44:05 +00:00
|
|
|
|
components = new Container();
|
2024-07-17 00:56:17 +00:00
|
|
|
|
label1 = new Label();
|
|
|
|
|
textBox1 = new ThClearableTextBox();
|
|
|
|
|
label2 = new Label();
|
|
|
|
|
label3 = new Label();
|
|
|
|
|
memoBox1 = new ThToolbarMemoBox();
|
|
|
|
|
label4 = new Label();
|
|
|
|
|
textBox2 = new ThHiButtonTextBox();
|
|
|
|
|
pictureBox1 = new PictureBox();
|
|
|
|
|
toolTip1 = new ToolTip(components);
|
|
|
|
|
textBox3 = new ThClearableTextBox();
|
|
|
|
|
thUserControl1 = new ThUserControl();
|
|
|
|
|
label5 = new Label();
|
2024-07-20 17:09:44 +00:00
|
|
|
|
dialogFooter1 = new RyzStudio.Windows.ThemedForms.Composite.DialogFooter();
|
2024-07-21 17:44:05 +00:00
|
|
|
|
((ISupportInitialize)pictureBox1).BeginInit();
|
2024-07-17 00:56:17 +00:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
label1.AutoSize = true;
|
|
|
|
|
label1.BackColor = Color.Transparent;
|
|
|
|
|
label1.ForeColor = SystemColors.ControlText;
|
|
|
|
|
label1.Location = new Point(10, 21);
|
|
|
|
|
label1.Margin = new Padding(0);
|
|
|
|
|
label1.Name = "label1";
|
|
|
|
|
label1.Padding = new Padding(0, 8, 0, 0);
|
|
|
|
|
label1.Size = new Size(29, 23);
|
|
|
|
|
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 = "";
|
|
|
|
|
textBox1.EnableReactiveVisual = true;
|
|
|
|
|
textBox1.Font = new Font("Segoe UI", 9F);
|
|
|
|
|
textBox1.Icon = "O";
|
|
|
|
|
textBox1.IconSize = 13F;
|
|
|
|
|
textBox1.Location = new Point(109, 20);
|
|
|
|
|
textBox1.Name = "textBox1";
|
|
|
|
|
textBox1.Size = new Size(260, 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.Margin = new Padding(0);
|
|
|
|
|
label2.Name = "label2";
|
|
|
|
|
label2.Padding = new Padding(0, 8, 0, 0);
|
|
|
|
|
label2.Size = new Size(49, 23);
|
|
|
|
|
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.Margin = new Padding(0);
|
|
|
|
|
label3.Name = "label3";
|
|
|
|
|
label3.Padding = new Padding(0, 8, 0, 0);
|
|
|
|
|
label3.Size = new Size(67, 23);
|
|
|
|
|
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.Name = "memoBox1";
|
|
|
|
|
memoBox1.ReadOnly = false;
|
|
|
|
|
memoBox1.ScrollBars = ScrollBars.Vertical;
|
|
|
|
|
memoBox1.Size = new Size(259, 232);
|
|
|
|
|
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.Margin = new Padding(0);
|
|
|
|
|
label4.Name = "label4";
|
|
|
|
|
label4.Padding = new Padding(0, 8, 0, 0);
|
|
|
|
|
label4.Size = new Size(38, 23);
|
|
|
|
|
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.Name = "textBox2";
|
|
|
|
|
textBox2.Size = new Size(259, 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.Name = "pictureBox1";
|
|
|
|
|
pictureBox1.Size = new Size(32, 32);
|
|
|
|
|
pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
|
|
|
|
|
pictureBox1.TabIndex = 201;
|
|
|
|
|
pictureBox1.TabStop = false;
|
2024-08-04 03:11:19 +00:00
|
|
|
|
pictureBox1.MouseClick += pictureBox1_MouseClick;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
pictureBox1.MouseDoubleClick += pictureBox1_MouseDoubleClick;
|
|
|
|
|
//
|
|
|
|
|
// textBox3
|
|
|
|
|
//
|
|
|
|
|
textBox3.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
|
|
|
textBox3.BackColor = Color.Transparent;
|
|
|
|
|
textBox3.ClearedValue = "";
|
|
|
|
|
textBox3.EnableReactiveVisual = true;
|
|
|
|
|
textBox3.Font = new Font("Segoe UI", 9F);
|
|
|
|
|
textBox3.Icon = "O";
|
|
|
|
|
textBox3.IconSize = 13F;
|
|
|
|
|
textBox3.Location = new Point(109, 104);
|
|
|
|
|
textBox3.Name = "textBox3";
|
|
|
|
|
textBox3.Size = new Size(260, 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;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
thUserControl1.TabStop = false;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
//
|
|
|
|
|
// 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;
|
|
|
|
|
//
|
2024-07-20 17:09:44 +00:00
|
|
|
|
// dialogFooter1
|
|
|
|
|
//
|
|
|
|
|
dialogFooter1.BackColor = Color.FromArgb(240, 240, 240);
|
|
|
|
|
dialogFooter1.Button1Text = "&OK";
|
|
|
|
|
dialogFooter1.Dialog = this;
|
|
|
|
|
dialogFooter1.Dock = DockStyle.Bottom;
|
2024-07-21 17:44:05 +00:00
|
|
|
|
dialogFooter1.IsBusy = false;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
dialogFooter1.Location = new Point(0, 437);
|
|
|
|
|
dialogFooter1.Name = "dialogFooter1";
|
|
|
|
|
dialogFooter1.Size = new Size(384, 84);
|
|
|
|
|
//
|
2024-07-17 00:56:17 +00:00
|
|
|
|
// EditBookmarkForm
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
BackColor = Color.White;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
ClientSize = new Size(384, 521);
|
2024-07-20 17:09:44 +00:00
|
|
|
|
Controls.Add(dialogFooter1);
|
2024-07-17 00:56:17 +00:00
|
|
|
|
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);
|
|
|
|
|
Name = "EditBookmarkForm";
|
|
|
|
|
Text = "Edit Bookmark";
|
2024-07-21 17:44:05 +00:00
|
|
|
|
((ISupportInitialize)pictureBox1).EndInit();
|
2024-07-17 00:56:17 +00:00
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnShown(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnShown(e);
|
|
|
|
|
|
|
|
|
|
textBox2.Focus();
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 17:09:44 +00:00
|
|
|
|
protected override void OnClosing(CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnClosing(e);
|
|
|
|
|
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-07-17 00:56:17 +00:00
|
|
|
|
|
|
|
|
|
public BookmarkModel Result
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (result == null)
|
|
|
|
|
{
|
|
|
|
|
result = new BookmarkModel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.Title = textBox1.Text?.Trim() ?? string.Empty;
|
|
|
|
|
result.Address = textBox2.Text?.Trim() ?? string.Empty;
|
|
|
|
|
result.Description = textBox3.Text?.Trim() ?? string.Empty;
|
2024-07-20 17:09:44 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
result.Icon = pictureBox1.Image;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-17 00:56:17 +00:00
|
|
|
|
result.Notes = memoBox1.Text?.Trim() ?? string.Empty;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected bool IsBusy
|
|
|
|
|
{
|
|
|
|
|
get => _isBusy;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_isBusy = value;
|
|
|
|
|
|
|
|
|
|
UIControl.SetEnable(textBox1, !this.IsBusy);
|
|
|
|
|
UIControl.SetEnable(textBox2, !this.IsBusy);
|
|
|
|
|
UIControl.SetEnable(textBox3, !this.IsBusy);
|
2024-07-21 17:44:05 +00:00
|
|
|
|
dialogFooter1.IsBusy = _isBusy;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
UIControl.SetEnable(memoBox1, !this.IsBusy);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private async void textBox2_OnButtonClick(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
await InvalidateWebPage(textBox2.Text, true, true, true);
|
|
|
|
|
|
|
|
|
|
textBox2.Focus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void pictureBox1_MouseDoubleClick(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Button == MouseButtons.Left)
|
|
|
|
|
{
|
|
|
|
|
await InvalidateWebPage(textBox2.Text, false, false, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-04 03:11:19 +00:00
|
|
|
|
private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Button == MouseButtons.Right)
|
|
|
|
|
{
|
|
|
|
|
pictureBox1.Image = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
private async Task InvalidateWebPage(string url, bool updateTitle, bool updateDescription, bool updateIcon)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(url))
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
if (!url.StartsWith("http://", StringComparison.CurrentCultureIgnoreCase) && !url.StartsWith("https://", StringComparison.CurrentCultureIgnoreCase))
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
url = "http://" + url;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
var document = await _webProvider.RetrieveHtmlDocument(url);
|
2024-07-17 00:56:17 +00:00
|
|
|
|
if (document == null)
|
|
|
|
|
{
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
if (updateTitle)
|
|
|
|
|
{
|
|
|
|
|
textBox1.Text = _webProvider.ParseTitle(document);
|
|
|
|
|
}
|
2024-07-17 00:56:17 +00:00
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
if (updateDescription)
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
textBox3.Text = _webProvider.ParseMetaDescription(document);
|
|
|
|
|
}
|
2024-07-17 00:56:17 +00:00
|
|
|
|
|
2024-08-04 01:47:25 +00:00
|
|
|
|
if (updateIcon)
|
|
|
|
|
{
|
|
|
|
|
try
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
pictureBox1.Image = await _webProvider.RetrieveImage(document);
|
2024-08-04 03:11:19 +00:00
|
|
|
|
if (pictureBox1.Image != null)
|
2024-08-04 01:47:25 +00:00
|
|
|
|
{
|
2024-08-04 03:11:19 +00:00
|
|
|
|
if (pictureBox1.Image.Width > 16)
|
|
|
|
|
{
|
|
|
|
|
pictureBox1.Image = RyzStudio.Drawing.ImageEditor.Resize(pictureBox1.Image, 16, 16);
|
|
|
|
|
}
|
2024-08-04 01:47:25 +00:00
|
|
|
|
}
|
2024-07-17 00:56:17 +00:00
|
|
|
|
}
|
2024-08-04 01:47:25 +00:00
|
|
|
|
catch (Exception)
|
2024-07-17 00:56:17 +00:00
|
|
|
|
{
|
2024-08-04 01:47:25 +00:00
|
|
|
|
pictureBox1.Image = null;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-04 01:47:25 +00:00
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
2024-07-17 00:56:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|