Silverlight 网格布局
当我在 Silverlight 中有网格时,我提供如下所示的列定义
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
由于某种原因,放置在这些列中的项目会被切断。 也就是说我只看到了一半的控制。 但是,当我这样做
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
并将项目放入这些受尊敬的行中时,我可以看到整个项目及其各自正确的宽度和高度。
我可以忽略什么?
谢谢
When I have Grid in Silverlight, and I provide Column Definitions like below
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
For some reason the items that get placed in those columns get cut off.
That is I only see half the control.
But when I do
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
and put items in those respected rows I can see the entire items with their proper respective widths and heights.
What could I be overlooking?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上只是一个捷径
,这意味着,这个网格中有两列,每列占据宽度的 50%。
同样的方式,
与
希望这有帮助。 :)
is actually just a short cut for
which means, you have two columns in this Grid, each takes 50% of the width.
Same way,
is the same as
Hope this helps. :)
寻找以下链接。它应该可以帮助你:
在 Silverlight 中使用网格控件< /a>
Look for following link. It should help you:
Using the Grid control in Silverlight