如何在Windows 7中添加GUI元素(如Android中的“this.add”)

时间:2012-08-23 06:49:35

标签: android windows-phone-7 interface

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

this.add 

如何在Windows Phone 7中完成?

1 个答案:

答案 0 :(得分:2)

我对Android非常了解,但在Windows手机应用程序中,如果你想在屏幕上添加一个UI元素:

首先使用所有属性集

创建所需的元素
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

添加元素