DisplayMagician/HeliosPlus/UIForms/ShortcutLibraryForm.cs

32 lines
696 B
C#
Raw Normal View History

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 HeliosPlus.UIForms
{
public partial class ShortcutLibraryForm : Form
{
public ShortcutLibraryForm()
{
InitializeComponent();
}
private void btn_new_Click(object sender, EventArgs e)
{
var shortcutForm = new ShortcutForm();
shortcutForm.ShowDialog(this);
}
private void btn_back_Click(object sender, EventArgs e)
{
this.Close();
}
}
}