Initial commit with first design framework

This commit is contained in:
2023-04-26 10:44:10 +02:00
commit d0e86a65d7
17 changed files with 1562 additions and 0 deletions

25
Test_Merge/Settings.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test_Merge
{
public partial class Settings : Form
{
public Settings()
{
InitializeComponent();
}
private void lsbPresets_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}