如何找到添加按钮的源对象

时间:2013-09-16 12:36:30

标签: c# wpf dynamically-generated

我已经动态地将按钮添加到列表框中。 我正在使用该按钮,我必须知道这个按钮的位置。

我有这个方法:

private void addNewButton_Click(object sender, RoutedEventArgs e)
    {
        if(sender.GetType().IsSubclassOf(typeof(Control)))
        {
            Control formControl = (Control)sender;
            switch (formControl.Name)
            {
                case "addSound20":
                case "addSound21":
                case "addSound23":
                case "addSound24":
                case "addSound25":
                case "addSound26":
                    MessageBox.Show("test: " + formControl.Name);
                    // there I need to know, where is this button located
                    break;
                default:
                    MessageBox.Show("exception: default");
                    break;
            }
        }
    }

如何找到按钮的源对象?

编辑:我在mainWindow中有一些ListBox - 我需要知道,哪个ListBox包含我正在使用的Button。每个对象都有特定的名称 - 例如“button20”,“listBox22”等。

2 个答案:

答案 0 :(得分:2)

根据您的上一条评论,您可以投射并使用Parent

((ListBox)formControl.Parent).Items.Remove(formControl);

注意:父级可以返回null,您可能希望检查它

formControl.Parent != null && formControl.Parent is ListBox

答案 1 :(得分:0)

您可以使用VisualTreeHelper查找任何控件的父级...以下方法可以帮助您..

        public static T FindAncestor(DependencyObject dependencyObject)
            where T : DependencyObject
        {
            var parent = VisualTreeHelper.GetParent(dependencyObject);

            if (parent == null) return null;

            var parentT = parent as T;
            return parentT ?? FindAncestor(parent);
        }

您可以将此方法称为LisBox lisbox = FindAncestor(formControl);