From 29b9caa9bbe48a9551c33bf2705eaf910429247a Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 16 Nov 2021 18:11:50 +0000 Subject: [PATCH] Removed animated gif --- AppResource.Designer.cs | 10 ---------- AppResource.resx | 3 --- BookmarkForm.cs | 2 +- UpdateIconsForm.cs | 2 +- 4 files changed, 2 insertions(+), 15 deletions(-) diff --git a/AppResource.Designer.cs b/AppResource.Designer.cs index f7bb2f8..502b3a3 100644 --- a/AppResource.Designer.cs +++ b/AppResource.Designer.cs @@ -128,16 +128,6 @@ namespace BookmarkManager { } } - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap loading_block { - get { - object obj = ResourceManager.GetObject("loading_block", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - /// /// Looks up a localized string similar to https://www.hiimray.co.uk/software-bookmark-manager. /// diff --git a/AppResource.resx b/AppResource.resx index 4562d76..97991b2 100644 --- a/AppResource.resx +++ b/AppResource.resx @@ -139,9 +139,6 @@ Resources\hexagon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Resources\loading-block.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - https://www.hiimray.co.uk/software-bookmark-manager diff --git a/BookmarkForm.cs b/BookmarkForm.cs index e257290..0ccd4d1 100644 --- a/BookmarkForm.cs +++ b/BookmarkForm.cs @@ -344,7 +344,7 @@ namespace FizzyLauncher { isBusy = value; - ThreadControl.SetValue(pictureBox2, (isBusy ? AppResource.loading_block : null)); + ThreadControl.SetValue(pictureBox2, (isBusy ? RyzStudio.UIResource.loading_block : null)); ThreadControl.SetEnable(textBox1, !isBusy); ThreadControl.SetEnable(textBox2, !isBusy); diff --git a/UpdateIconsForm.cs b/UpdateIconsForm.cs index 7265014..860c8c2 100644 --- a/UpdateIconsForm.cs +++ b/UpdateIconsForm.cs @@ -272,7 +272,7 @@ namespace FizzyLauncher { isBusy = value; - ThreadControl.SetValue(pictureBox2, (isBusy ? AppResource.loading_block : null)); + ThreadControl.SetValue(pictureBox2, (isBusy ? RyzStudio.UIResource.loading_block : null)); ThreadControl.SetEnable(pickerBox1, !isBusy); button2.LabelText = (isBusy ? "&Stop" : "&Run");