代码之家  ›  专栏  ›  技术社区  ›  Brent Arias

面板尺寸

wpf
  •  1
  • Brent Arias  · 技术社区  · 14 年前

    http://msdn.microsoft.com/en-us/library/ms754152.aspx#Panels_derived_elements

    但我不只是想知道这个问题的答案。我想要所有面板类型的大小动态和功能,以摘要的形式,这样我就可以根据需要做出所有这些选择。我在网上找到的文章只涵盖了一半的面板类型,并没有像我所描述的那样提供关于尺寸的更多信息。

    有人知道有我要找的信息的链接(或书)吗?

    1 回复  |  直到 13 年前
        1
  •  1
  •   bitbonk    14 年前

    就像 UniformGrid实际上可以适合其内部内容的WPF面板。试试这个:

       <Grid>
          <UniformGrid HorizontalAlignment="Center" 
                       VerticalAlignment="Center" 
                       Background="Red">
             <Button>Hello</Button>
             <Button>Hello</Button>
             <Button>Hello</Button>
          </UniformGrid>
       </Grid>