如何在 Silverlight 4 中以编程方式将 uielement 添加到画布?
如何以编程方式将 UIElement
添加到 Silverlight 4 中的画布?
但什么也没发生。当我检查图像是否存在时,它就在那里 但没有任何显示。
什么鬼?
Button btn = new Button();
btn.Content = "Button";
Canvas.SetLeft(btn, 450);
Canvas.SetTop(btn, 100);
Canvas1.Resources.Add("btn1", btn);
Canvas1.UpdateLayout();
How can I programmatically add UIElement
s to canvas in Silverlight 4?
But nothing happens. When I check for the existence of the image it is there
but nothing shows.
wtf?
Button btn = new Button();
btn.Content = "Button";
Canvas.SetLeft(btn, 450);
Canvas.SetTop(btn, 100);
Canvas1.Resources.Add("btn1", btn);
Canvas1.UpdateLayout();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用
Children
,而不是Resources
。You want to use
Children
, notResources
.