Win Phone 8 WP8在运行时创建动态控件

时间:2013-05-14 07:12:33

标签: windows-phone-8

我需要能够在运行时创建动态控件 - 文本块,按钮是特定的。我试过这个: dim b as button = new button b.content = “测试”

代码没有错误,但也没有生成按钮。简单我知道但是对于Wp8来说这对我来说很难。 感谢

1 个答案:

答案 0 :(得分:2)

您仍需要将该按钮添加到您的页面。试试这个:

<强>的Xaml

<ContentControl x:Name="container">

</ContentControl>

<强>代码

Dim b as New Button With { .Content = "test"}
container.Content = b