Add prototype GUI

This commit is contained in:
2021-12-04 12:27:16 +01:00
parent 14fb199206
commit 3795774023
10 changed files with 276 additions and 2 deletions

View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace ExeLauncher.GUI
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public string ApplicationName { get; set; } = "";
public string ApplicationIconPath { get; set; } = "";
public MainWindow()
{
InitializeComponent();
}
private void Button_Icon(object sender, RoutedEventArgs e)
{
}
private void Button_Add(object sender, RoutedEventArgs e)
{
}
private void Button_Remove(object sender, RoutedEventArgs e)
{
}
}
}