using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace GatherLinks
{
public partial class CrawlLocaly : Form
{
public CrawlLocaly()
{
InitializeComponent();
}
public string getText()
{
return textBox1.Text;
}
private void button1_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(textBox1.Text))
{
DialogResult = DialogResult.OK;
}
else
{
}
}
}
}
在 Form1 中,我显示此表单及其文本框:
private void button6_Click(object sender, EventArgs e)
{
using (var w = new StreamWriter(keywords))
{
crawlLocaly1 = new CrawlLocaly();
crawlLocaly1.StartPosition = FormStartPosition.CenterParent;
DialogResult dr = crawlLocaly1.ShowDialog(this);
我想在 crawlLocaly 新表单中做,当我单击 Form1 并打开/显示新表单上的新表单 button1 将启用 = false 并且一旦用户在新表单 button1 的文本框中键入任何内容,将启用 true只有这样,用户才能点击新表单中的 button1 ,这就是好的(新表单中按钮的文本是好的)。
尝试在新表单中使用 button1 textchanged 事件,但没有成功。只有在我单击它后,该按钮才变为假。