我正在尝试使用链接标签创建一个“列表”来识别附件(在邮件客户端中)。所以,我有这个来创建链接:
Label newLabel = new LinkLabel();
newLabel.Name = "anexo" + Convert.ToString(anexos_file.Count); //anexos_file is a list where all the attachments Paths exist
newLabel.Text = Path.GetFileName(file);
newLabel.Left = bt_anexos.Left;
newLabel.Top = label2.Top;
newLabel.Width = 150;
newLabel.AutoSize = true;
newLabel.Click += new System.EventHandler(Click_anexo); //Click_anexo is the name of the function
现在我需要知道如何创建一个功能,当我单击链接时,会删除链接本身。
那么,有什么帮助吗?