using Autodesk.Revit.UI; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace HStation.RevitDev.RevitDataExport.Forms { public partial class Form_Search : Form { public Form_Search() { InitializeComponent(); } public string ID { get; set; } private void simpleButton1_Click(object sender, EventArgs e) { this.ID = textBox1.Text; if (this.ID == "") { TaskDialog.Show("错误", "请输入要查找的构件ID"); } else { DialogResult = DialogResult.OK; this.Close(); } } } }