使用 Visual studio 2010 在 WP7 中以编程方式添加控件时显示问题
我使用 Visual Studio 2010 C# 创建了移动应用程序。在那里,我以编程方式创建了一个按钮,并将该按钮添加到内容面板中。运行我的应用程序时,我成功显示了按钮。 但它有以下问题 -即使我提到厚度为(0,0,80,80),该按钮始终显示内容面板的中心
-我尝试将该按钮添加到 Layoutroot 中,按钮在 Y 位置显示更好,但在 Layoutroot 的 X 位置中心
在这里我附上了我的代码供您参考
Button nw = new Button();
nw.Margin = new Thickness(0, 0, 80, 150);
ContentPanel.Children.Add(nw);
I have Created Mobile Application Using Visual Studio 2010 C#. There i have created one button Programmatically and Add that button into Contentpanel .While running my app i got Button display successfully.
But it has Following issue
-that Button Always Display Center of the Content panel even i have metion the thickness as(0,0,80,80)
-I have tried to add that button into Layoutroot , Button Display better in Y postion But X position center of the Layoutroot
Here i have enclosed my code for ur reference
Button nw = new Button();
nw.Margin = new Thickness(0, 0, 80, 150);
ContentPanel.Children.Add(nw);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个?
Try this?
这取决于
ContentPanel
中的其他内容 - 我假设是默认模板中的网格。如果其中没有其他内容,那么它将占用网格占用的整个空间,减去分配给边距的空间。
请提供一个完整的示例来演示您所看到的行为,并告诉我们您想要实现的目标。 (您希望按钮如何显示?)
This depends on what else is also in
ContentPanel
- which I assume is the grid from the default template.If there is nothing else in it then it will take up the whole space occupied by the grid, minus the space you have allocated to the margin.
Please provide a complete example which demonstrates the behaviour you are seeing and tell us what you are trying to achieve. (How do you want the button to be displayed?)