for Push.

This commit is contained in:
nobobo
2026-06-01 13:23:34 +09:00
parent 9e093ea99f
commit a6550e9928
93 changed files with 10393 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
using KssSmaPlaLib.Forms;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.Entity.Core.Mapping;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KssSmaPlaLib.Input.Gamen
{
public partial class TextInputForm : Form
{
public string EditedText { get; set; } = string.Empty;
public TextInputForm(string text, char passwordChar = (char)0)
{
InitializeComponent();
TextText.PasswordChar = passwordChar;
TextText.Text = text;
}
private void TextInputForm_Load(object sender, EventArgs e)
{
FormHelper.LoadFormBounds(this);
}
private void TextInputForm_FormClosing(object sender, FormClosingEventArgs e)
{
FormHelper.SaveFormBounds(this);
}
private void OkButton_Click(object sender, EventArgs e)
{
EditedText = TextText.Text;
}
}
}