我在代码中有一个按钮控件
Button>
<Button.Content>
<StackPanel Orientation='Horizontal' >
<TextBlock Text='{Binding ramDay, Mode=TwoWay}' Margin='0,-18,0,0' Style='{StaticResource PhoneTextTitle1Style}'/>
<TextBlock Text='{Binding enDay, Mode=TwoWay}' Margin='15,10,0,0' Style='{StaticResource PhoneTextTitle2Style}'/>
</StackPanel>
</Button.Content>
</Button>
但是我想根据用户的需要创建尽可能多的按钮以及不同的文本框值。但我无法找到任何办法,请帮助我。 感谢
答案 0 :(得分:2)
在项目中使用此代码创建custom user control
。然后在代码后面的mainPage中,以for循环或任何其他适合您情况的方法将userControl动态添加到UI上的网格中。