WP7:将项动态添加到网格中

本文关键字:网格 添加 动态 WP7 | 更新日期: 2023-09-27 18:22:25

我正在尝试将多个项目添加到一个网格中,这样以后的项目就会出现在以前的项目下面。

            TextBox foo = new TextBox();
            foo.Text = " " + id + " ";
            foo.Width = 440;
            foo.Height = 200;
            foo.VerticalAlignment = "Top";
            foo.Background = new SolidColorBrush(Colors.Red);
            ((Grid)daysPanels[id].Content).Children.Add(foo);

不幸的是,VerticalAlignment = "Top"行不起作用,它表示无法将类型"String"隐式转换为类型"VerticalAlignment"。我这样做是正确的吗?我该如何修复这个错误?

WP7:将项动态添加到网格中

查看msdn文档。VerticalAlignment是一个枚举。

foo.VerticalAlignment = VerticalAlignment.Top;