mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
28 lines
568 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|