Files
Macro-Deck/MacroDeck/GUI/MainWindowViews/LoadingView.Designer.cs
Manuel Mayer 958ee99a0d Feature/migrate net6 (#314)
* - Bump .NET to version 6.0
- Bump System.Drawing.Common to version 6.0
- Bump CefSharp to version 106.0.290
- Bump Cottle to version 2.0.8
- Bump plugin api version to 40
- Removed VariableManager.Variables
- Made VariableManager.ListVariables internal
- Removed VariableManager.SetValue(string name, object value, VariableType type, MacroDeckPlugin plugin, bool save = true)
- Removed VariableManager.SetValue(string name, object value, VariableType type, MacroDeckPlugin plugin, string[] suggestions, bool save = true)
- Removed "Macro Deck started with administrator privileges" warning
- Fixed bug: Child folders are not deleted properly when parent folder is deleted
- Optimized code

* Created ApplicationPaths class (#306)

* Gets decryption to read ALL bytes (#308)

- apprently in .net6 CryptoStream doesn't necessarily read all the bytes you tell it to
- got it workin with a loop
- then replaced that with a simple StreamReader I saw from another place

* Feature/refactor code (#311)

* Created ApplicationPaths class

* Feature/migrate net6 (#309)

* Created ApplicationPaths class (#306)

* Gets decryption to read ALL bytes (#308)

- apprently in .net6 CryptoStream doesn't necessarily read all the bytes you tell it to
- got it workin with a loop
- then replaced that with a simple StreamReader I saw from another place

Co-authored-by: RecklessBoon <16234384+RecklessBoon@users.noreply.github.com>

* - Changed to file scoped namespace
- Cleaned up the MacroDeck class

* Clean up

* Changed repository base directory

* Removed unused files

* Delete dotnet.yml

* Update README.md

* Added Program.cs
Added Backup back

* Added Program.cs

* Clean up

Co-authored-by: RecklessBoon <16234384+RecklessBoon@users.noreply.github.com>

* Feature/refactor code (#313)

* Created ApplicationPaths class

* Feature/migrate net6 (#309)

* Created ApplicationPaths class (#306)

* Gets decryption to read ALL bytes (#308)

- apprently in .net6 CryptoStream doesn't necessarily read all the bytes you tell it to
- got it workin with a loop
- then replaced that with a simple StreamReader I saw from another place

Co-authored-by: RecklessBoon <16234384+RecklessBoon@users.noreply.github.com>

* - Changed to file scoped namespace
- Cleaned up the MacroDeck class

* Clean up

* Changed repository base directory

* Removed unused files

* Delete dotnet.yml

* Update README.md

* Added Program.cs
Added Backup back

* Added Program.cs

* Clean up

* Removed unused icon pack classes

* Fixed issue when Macro Deck is started without start parameters

* Fixed restart parameters

* Added fallback in the CheckRunningInstance method

* Sets up test suite, adds one test (#312)

Co-authored-by: RecklessBoon <16234384+RecklessBoon@users.noreply.github.com>

Co-authored-by: RecklessBoon <16234384+RecklessBoon@users.noreply.github.com>
2022-11-02 22:53:51 +01:00

75 lines
2.6 KiB
C#

using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using SuchByte.MacroDeck.Properties;
namespace SuchByte.MacroDeck.GUI.MainWindowContents
{
partial class LoadingView
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.pictureBox1 = new PictureBox();
((ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
| AnchorStyles.Left)
| AnchorStyles.Right)));
this.pictureBox1.BackgroundImageLayout = ImageLayout.Zoom;
this.pictureBox1.Image = Resources.Macro_Deck_2021;
this.pictureBox1.Location = new Point(3, 109);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new Size(1131, 309);
this.pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// LoadingView
//
this.AutoScaleMode = AutoScaleMode.Dpi;
this.BackColor = Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
this.Controls.Add(this.pictureBox1);
this.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point);
this.ForeColor = Color.White;
this.Name = "LoadingView";
this.Size = new Size(1137, 540);
((ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private PictureBox pictureBox1;
}
}