Code refactoring

This commit is contained in:
Stone_Red
2022-04-24 20:54:12 +02:00
parent f45ce21ad8
commit adfedcb876
10 changed files with 68 additions and 40 deletions
+3 -3
View File
@@ -13,12 +13,12 @@ namespace DesktopMagicPlugin.Test
public class GifPlugin : Plugin
{
[Element("Gif path:")]
private TextBox input = new TextBox("");
private readonly TextBox input = new TextBox("");
[Element]
private Label info = new Label("");
private readonly Label info = new Label("");
private List<Bitmap> bitmaps = new List<Bitmap>();
private readonly List<Bitmap> bitmaps = new List<Bitmap>();
private int frameCount = -1;