在代码wp7中动态创建自定义按钮

时间:2012-08-17 06:30:52

标签: windows-phone-7

我在代码中有一个按钮控件

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>

但是我想根据用户的需要创建尽可能多的按钮以及不同的文本框值。但我无法找到任何办法,请帮助我。 感谢

1 个答案:

答案 0 :(得分:2)

在项目中使用此代码创建custom user control。然后在代码后面的mainPage中,以for循环或任何其他适合您情况的方法将userControl动态添加到UI上的网格中。