|
解決したポいけど、おちゃらかにやってみた。
----- Program.cs -----
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
static class Program
{
public static string userInput; // 追加
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
MessageBox.Show(userInput); // 追加
}
}
}
----- Form1.cs -----
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// "フォーム閉じちゃうよ"のとき
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
// textBox1の内容を Program.userInput にコピー
Program.userInput = textBox1.Text;
}
}
}
…質問主のやりたいことはこんなことだったのかしらん。
|