From 10d5cbaa5bc651e9432f7e586674e317044ac1f3 Mon Sep 17 00:00:00 2001 From: lms Date: Wed, 6 Dec 2023 18:37:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96ML=E7=95=8C=E9=9D=A2=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AirdPro/Forms/MLForm.Designer.cs | 1 + AirdPro/Forms/MLForm.cs | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/AirdPro/Forms/MLForm.Designer.cs b/AirdPro/Forms/MLForm.Designer.cs index 3f6e1dd..55cc716 100644 --- a/AirdPro/Forms/MLForm.Designer.cs +++ b/AirdPro/Forms/MLForm.Designer.cs @@ -336,6 +336,7 @@ private void InitializeComponent() this.btnTasks.TabIndex = 17; this.btnTasks.Text = "Download Links"; this.btnTasks.UseVisualStyleBackColor = true; + this.btnTasks.Click += new System.EventHandler(this.btnTasks_Click); // // MLForm // diff --git a/AirdPro/Forms/MLForm.cs b/AirdPro/Forms/MLForm.cs index 3703273..beef7d5 100644 --- a/AirdPro/Forms/MLForm.cs +++ b/AirdPro/Forms/MLForm.cs @@ -281,8 +281,7 @@ private void search() } } } - - + setDataSource(searchProjectsTable); } } @@ -346,5 +345,10 @@ private void MLForm_FormClosed(object sender, FormClosedEventArgs e) ftpClient.Disconnect(); } } + + private void btnTasks_Click(object sender, EventArgs e) + { + throw new System.NotImplementedException(); + } } } \ No newline at end of file