我想在XAML文件中声明一个容器,当我向i添加任何组件时,它在Java中的行为类似JPanel
GridLayout
。这意味着无论我做什么,该容器中的每个组件都将具有相同的大小。
答案 0 :(得分:1)
您可以在WPF中使用UniformGrid
<UniformGrid>
<Button Content="Hello1"/>
<Button Content="Hello2"/>
<Button Content="Hello3"/>
<Button Content="Hello4"/>
<Button Content="Hello5"/>
<Button Content="Hello6"/>
</UniformGrid>
有关UniformGrid的更多信息