0

我一直在尝试使用 Visual Inheritance,以便我可以以多种形式重用一组按钮。

基本上我想要实现的是,我希望按钮在不同的表单中具有相同的视觉行为,但是,它们应该根据继承它的表单执行不同的操作。

假设我有以下按钮FormButtonBar

新 | 编辑 | 搜索 | 取消 | 关闭

它们应该被禁用或根据当前情况更改其文本和图标(我使用.Tag),这些是显示的替代选项

保存 | 保存 | 删除 | 取消 | 关闭

即使我在继承它的表单上按预期工作,我显然希望这些按钮根据我拥有的表单来处理不同的内容。

我想到的是一种调用方法的方法,就像saveNewItem() saveChangedItem() removeItem()每个表单继承FormButtonBar都应该有的那样。

但是我该如何称呼他们FormButtonBar呢?

例如:

    private void buttonSearchRemove_Click(object sender, EventArgs e)
    {

        if (buttonSearchRemove.Tag == "search")
        {

            //call the search form here and wait for something to be returned

            //the following 3 lines are the ones that switch text, icons and enabled/disabled on the buttons

            utils.hablitarBotoes(panelBotoes, "abc");
            utils.alternarBotoes(panelBotoes, "b");
            buttonBuscarExcluir.Text = "Excluir";

        }
        else if (buttonSearchRemove.Tag == "remove")
        {
            DialogResult reply = MessageBox.Show("Are you sure you want to remove it?", "Are you sure?", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
            if (reply == DialogResult.Yes)
            {

                  //CALL REMOVE METHOD THAT SHOULD BE IN THE FORM INHERITING THIS ONE, BUT HOW?

                  removeItem();

              }

                utils.hablitarBotoes(panelBotoes, "nbf");
                utils.alternarBotoes(panelBotoes, "");

                buttonNovoSalvar.Text = "New";
                buttonBuscarExcluir.Text = "Search";
                buttonAlterarSalvar.Text = "Edit";
            }
        }
4

1 回答 1

0

您应该在基类中将这些方法声明为虚拟方法,然后在子类中覆盖它们。

public class MyBaseClass
{
    public virtual void RemoveItems()
    {
    }
}

public class MyDerivedClass : MyBaseClass 
{
    public override void RemoveItems()
    {
       //your specific implementation for this child class
    }
}
于 2013-08-31T04:17:03.370 回答