使用Windows Phone 7中的类方法向用户控件添加按钮

时间:2011-10-30 11:36:33

标签: c# windows-phone-7

我正在为WP7应用程序开发用户控件。我将控件添加到MainPage.xaml,我希望控件使用方法Add_button_internal()从名为MyButton的类创建按钮,但我无法弄清楚如何执行此操作。

当我尝试使用类Add_button_external();之外的方法MyButton时,没有问题。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;


namespace PhoneApp4
{
    public partial class WindowsPhoneControl1 : UserControl
    {
        public WindowsPhoneControl1()
        {
            InitializeComponent();

            // THIS WORKS FINE
            LayoutRoot.Children.Add(Add_button_external("button name"));

            // THIS DOESNT WORK :(
            MyButton t = new MyButton();
            t.Add_button_internal("button name");
        }

        public Button Add_button_external(string m)
        {
            Button btn = new Button();
            btn.Content = m;
            return btn;  
        }

        public class MyButton
        {
            public MyButton() { }

            public Button Add_button_internal(string n)
            {
                Button btn = new Button();
                btn.Content = n;
                return btn;                    
            }
        }
    }
}

你能帮我解决一下我的问题吗?

1 个答案:

答案 0 :(得分:1)

您的MyButton类Add_Button_Internal方法仅返回新创建的按钮,您必须将其添加到layoutroot.childer集合以在UI上显示它。所以我认为你的问题只是忘记将新按钮添加到用户界面。