mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 13:05:38 +02:00
remove Ninjacrab from name space
This commit is contained in:
parent
42a91fd801
commit
9717dae16b
41 changed files with 2039 additions and 2039 deletions
28
Ninjacrab.PersistentWindows.Solution/Common/LayoutProfile.cs
Normal file
28
Ninjacrab.PersistentWindows.Solution/Common/LayoutProfile.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue