2

我需要能够在运行时创建动态控件 - 文本块,具体的按钮。我试过这个:dim b as button = new button b.content="test"

该代码不会出错,但也不会产生按钮。我知道很简单,但对于 Wp8 来说,这对我来说非常困难。谢谢

4

1 回答 1

2

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

Xaml

<ContentControl x:Name="container">

</ContentControl>

代码

Dim b as New Button With { .Content = "test"}
container.Content = b
于 2013-05-14T07:15:35.947 回答