在android中,当我们想在屏幕上添加GUI元素时,我们使用
this.add
如何在Windows Phone 7中完成?
答案 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
通过以下链接向GRID和STACKPANEL
添加元素