使用 Visual studio 2010 在 WP7 中以编程方式添加控件时显示问题

发布于 2024-11-05 14:43:05 字数 397 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

美胚控场 2024-11-12 14:43:05

试试这个?

       Button nw = new Button();    
       nw.VerticalAlignment = System.Windows.VerticalAlignment.Top;
       nw.HorizontalAlignment = System.Windows.HorizontalAlignment.Left;                    
       nw.Margin = new Thickness(80, 150, 0, 0);      
       ContentPanel.Children.Add(nw);

Try this?

       Button nw = new Button();    
       nw.VerticalAlignment = System.Windows.VerticalAlignment.Top;
       nw.HorizontalAlignment = System.Windows.HorizontalAlignment.Left;                    
       nw.Margin = new Thickness(80, 150, 0, 0);      
       ContentPanel.Children.Add(nw);
灯角 2024-11-12 14:43:05

这取决于 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?)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文