1 Star 0 Fork 2

mes / NFinal2Compiler

forked from xiaolu6t6t / NFinal2Compiler 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
UserInputForm.cs 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
chenzx 提交于 2017-11-15 20:00 . update custome paramter in project
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace NFinalCompiler
{
public partial class UserInputForm : Form
{
private static string customMessage;
private TextBox textBox1;
private Button button1;
public UserInputForm()
{
this.Size = new System.Drawing.Size(155, 265);
button1 = new Button();
button1.Location = new System.Drawing.Point(90, 25);
button1.Size = new System.Drawing.Size(50, 25);
button1.Click += button1_Click;
this.Controls.Add(button1);
textBox1 = new TextBox();
textBox1.Location = new System.Drawing.Point(10, 25);
textBox1.Size = new System.Drawing.Size(70, 20);
this.Controls.Add(textBox1);
}
public static string CustomMessage
{
get
{
return customMessage;
}
set
{
customMessage = value;
}
}
private void button1_Click(object sender, EventArgs e)
{
customMessage = textBox1.Text;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/mes/nfinal2compiler.git
git@gitee.com:mes/nfinal2compiler.git
mes
nfinal2compiler
NFinal2Compiler
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891