using DevExpress.XtraEditors; using System; namespace HL_FristAidPlatform_ChestPain.Part { public partial class Form_InpuInfo : XtraForm { public string noto = ""; public Form_InpuInfo() { InitializeComponent(); } private void simpleButton_Save_Click(object sender, EventArgs e) { noto = textEdit_Node.Text+""; Close(); } private void simpleButton_Cancel_Click(object sender, EventArgs e) { Close(); } } }