PersistentWindows/Ninjacrab.PersistentWindows.Solution/Common/LayoutProfile.cs
2023-03-03 11:59:41 -08:00

28 lines
568 B
C#

using System;
using System.Windows.Forms;
namespace PersistentWindows.Common
{
public partial class LayoutProfile : Form
{
public char snapshot_name;
public LayoutProfile()
{
InitializeComponent();
}
private void ProfileName_TextChanged(object sender, EventArgs e)
{
var str = ((TextBox)sender).Text;
snapshot_name = Char.ToLower(str[0]);
Close();
}
private void LayoutProfile_Load(object sender, EventArgs e)
{
}
}
}