如何删除添加运行时的按钮?

时间:2018-05-20 13:58:52

标签: c# button textbox runtime

首先,我是c#的真正初学者,所以请不要回答专家的问题,保持简单,即使这是一个比它必须更长的变种,谢谢!

我编写了一个小程序,它能够在运行时向表单添加所谓的“Notes”。

注意是一个类,它包含两个按钮(删除,保存)和一个文本框。 另一个类MyNotes有一个方法,它可以为表单添加新的注释,最多可达到最大值。 4.

到目前为止它完美无缺。

现在问题: 我想删除用户按下删除按钮的特定注释(因此应该从表单中删除两个按钮和文本框,但是(如果有的话)其他注释应保持不变。

我已经编写了一个删除方法,但问题是,“remove_Click”中的“对象发送者”确实提供了一个删除按钮,但是没有关于注释的信息,他是其中的一部分或其他元素。他的笔记(保存按钮,文本框)。我理解为什么,但我不知道,如何解决问题。

我怎样才能告诉他哪个笔记是他的一部分?

编辑:save_Click和button1_Click不属于此类,它们还有其他功能,与此无关。

EDIT2:这是该计划的图片。上部的4个文本框,保存按钮和x按钮由“ADD”添加。问题是在4个案例中的一个案例中按“X”删除一个“注释集”。 : - /

Click to see an image of my program

形式:

using System;
using System.Windows;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TextboxTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            richTextBox1.BorderStyle = BorderStyle.None; 
        }

        private void load_Click(object sender, EventArgs e)
        {
            Note note = MyNotes.AddNote();
            if (note !=  null)
            {
                this.Controls.Add(note.GetBox());
                this.Controls.Add(note.GetRemoveButton());
                this.Controls.Add(note.GetSaveButton());

                note.GetRemoveButton().Click += new EventHandler(remove_Click);

            }
            richTextBox1.Text = MyNotes.SetNote();
        }

        private void remove_Click(object sender, EventArgs e)
        {
            Note note = sender as Note;

            Controls.Remove(note.GetBox());
            Controls.Remove(note.GetSaveButton());
            Controls.Remove(note.GetRemoveButton());
        }


        private void save_Click(object sender, EventArgs e)
        {
            String savePath = Properties.Settings.Default.datapath;
            System.IO.File.WriteAllText(savePath, richTextBox1.Text);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 settings = new Form2();
            settings.Show();
            MessageBox.Show("Selected Item Text: " + Properties.Settings.Default.textboxFont + "\n");
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            richTextBox1.Text = MyNotes.SetNote();
        }

    }
}

Class MyNotes:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TextboxTest
{
    class MyNotes
    {
        public static List<Note> noteList = new List<Note>();
        public static String path = Properties.Settings.Default.datapath;
        private static int y = 50;



        // Adds a new textbox, save- and remove-Button to the form (and the textBoxList) 
        // up to a maximum of 4 each.

        public static Note AddNote()
        {
            if (noteList.Count < 4)
            {
                Note note = new Note();
                note.GetBox().Location = new Point(100, y);
                note.GetRemoveButton().Location = new Point(15, y-2);
                note.GetSaveButton().Location = new Point(40, y - 2);
                y += 22;
                noteList.Add(note);
                return note;
            }
            else
            {
                MessageBox.Show("It's only possible to set a maximum of 4 notes. Please delete or rewrite another one.");
                return null;
            }
        }

        public static String SetNote()
        {
            return System.IO.File.ReadAllText(path);
        }


    }
}

课堂笔记:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TextboxTest
{
    class Note
    {
        private TextBox box;
        private Button remove;
        private Button save;

        public Note()
        {
            boxSettings();
            removeSettings();
            saveSettings();
        }

        private void boxSettings()
        {
            box = new TextBox();
            box.Width = 250;
            box.BackColor = System.Drawing.Color.DarkGray;

        }

        private void removeSettings()
        {
            remove = new Button();
            remove.Text = "X";
            remove.TextAlign = ContentAlignment.MiddleCenter;
            remove.Width = 20;

        }

        private void saveSettings()
        {
            save = new Button();
            save.Text = "SAVE";
            save.TextAlign = ContentAlignment.MiddleCenter;
            save.Width = 50;

        }

        public TextBox GetBox()
        {
            return this.box;
        }

        public Button GetRemoveButton()
        {
            return this.remove;
        }

        public Button GetSaveButton()
        {
            return this.save;
        }


    }
}

2 个答案:

答案 0 :(得分:0)

在这种情况下,您可以使用Tag Property。将Tag属性(在每个Control中找到)视为可以容纳对象的占位符。

在您的情况下,用户点击&#34; X&#34;你要删除该注释的按钮,这里的问题是在点击事件中你得到按钮本身而不是注释。在这里,您可以将Note对象存储在按钮中,以便您可以在Click事件中使用它们。

<强>代码:

// Class Note
private void removeSettings()
{
    remove = new Button();
    remove.Text = "X";
    remove.TextAlign = ContentAlignment.MiddleCenter;
    remove.Width = 20;
    remove.Tag = this; // Store the current Note in its remove button
}

// Class Form1
private void remove_Click(object sender, EventArgs e)
{
    Button btn = sender as Button;
    Note note = btn.Tag as Note;

    Controls.Remove(note.GetBox());
    Controls.Remove(note.GetSaveButton());
    Controls.Remove(note.GetRemoveButton());
}

希望这很简单!

答案 1 :(得分:-1)

谢谢,这完美无缺! :-)

在过去的一小时里,我也找到了自己的解决方案。但它的方式更复杂(但至少它工作^^ - 但我会优先选择你的xD)。

那是&#34;金块&#34;:

private void remove_Click(object sender, EventArgs e)
        {
            Button button = sender as Button;
            String s = button.Name;
            s = s.Substring(6);
            int index;

            index = Convert.ToInt32(s);
            Note note = MyNotes.noteList.ElementAt(index);

            this.Controls.Remove(note.GetBox());
            this.Controls.Remove(note.GetSaveButton());
            this.Controls.Remove(note.GetRemoveButton());

            MyNotes.noteList.Remove(note);

            int x = MyNotes.noteList.Count;
            MessageBox.Show(x.ToString());

        }