0

在android中,当我们想在我们使用的屏幕上添加一个GUI元素时

this.add 

如何在 Windows phone 7 中做到这一点?

4

1 回答 1

2

我对 Android 不太了解,但是如果您想在屏幕上添加 UI 元素,请在 windows phone 应用程序中:

首先使用所有属性集创建所需的元素

Button button = new Button();
button.Content = "Click here";
button.Width = 100;
button.Height = 50;

然后将其添加到 XAML 页面

Grid.SetRow(button, 2); //here 2 is the row number in which you want to place your element
this.ContentPanel.Children.Add(button); //this adds the button to the "ContentPanel" grid

与 Grid 相比,添加到 StackPanel 要简单得多。

this.stackPanel.Children.Add(button); //where stackPanel is the name of the existing StackPanel

通过以下链接将元素添加到GRIDSTACKPANEL

于 2012-08-23T07:42:42.310 回答