无法在WPF应用程序中使用Controls.Add

时间:2012-09-08 23:01:05

标签: c#

当我编写Controls.Add()以在窗口中动态创建控件时,它表示在窗口类中未定义或存在控件。换句话说,“控件”不被识别为类或命令,因此代码不起作用。任何建议将不胜感激。

我想动态创建一个窗口并向其添加一个文本框。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

 public partial class Window2 : Window
    {
        public Window2()
        {
             InitializeComponent();
        } 

private void button2_Click(object sender, RoutedEventArgs e)
        {
            Window f1 = new Window();
            f1.Show();
            TextBox tb = new TextBox();
            tb.Width = 150;
            tb.Height = 60;
            tb.Name = "TextBoxID";
            tb.Text = "This is textbox first data";
            Controls.Add(f1);  


        }
    }

1 个答案:

答案 0 :(得分:2)

如果你查看Window Class的文档,你会发现它没有这样的属性。它具有Content属性,您可以将其设置为一个控件。因此,如果要添加多个控件,则必须将窗口的Content属性设置为多项面板(如StackPanel或Grid),并将控件添加到面板。

Panels