remove Ninjacrab from name space

This commit is contained in:
Kang Yu 2023-03-03 11:58:00 -08:00
parent 42a91fd801
commit 9717dae16b
41 changed files with 2039 additions and 2039 deletions

View file

@ -0,0 +1,28 @@
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)
{
}
}
}