在JPF XAML中使用GridLayout等效的Java JPanel

时间:2013-12-26 19:03:21

标签: c# java wpf xaml grid-layout

我想在XAML文件中声明一个容器,当我向i添加任何组件时,它在Java中的行为类似JPanel GridLayout。这意味着无论我做什么,该容器中的每个组件都将具有相同的大小。

1 个答案:

答案 0 :(得分:1)

您可以在WPF中使用UniformGrid

<UniformGrid>
    <Button Content="Hello1"/>
    <Button Content="Hello2"/>
    <Button Content="Hello3"/>
    <Button Content="Hello4"/>
    <Button Content="Hello5"/>
    <Button Content="Hello6"/>
</UniformGrid>

Uniform Grid Demo

有关UniformGrid的更多信息

http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.uniformgrid(v=vs.110).aspx