问题 在WPF中停靠顶部/底部/左/右/填充


我是胜利形式开发者。每当我想在其容器中的顶部/底部/左/右位置设置任何控件时,我们只需在winform中播放控件dock属性。所以只需指导我如何将控件放在其容器顶部/底部/左/右位置,以便在包含尺寸更改时控制位置在wpf中不会改变。

搜索谷歌后,我知道如何填充Dock属性,它就像

<Window ...Other window props... >
    <Canvas HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
        <!-- Canvas items here... -->
    </Canvas>
</Window>

因此,请指导我如何使用代码段在其容器中的顶部/底部/左侧/右侧位置设置任何控件。

UPDATE

我只是想知道停靠面板可以像我这样使用我的要求

<DockPanel LastChildFill="True">
    <Button Content="Dock=Top" DockPanel.Dock="Top"/>
    <Button Content="Dock=Bottom" DockPanel.Dock="Bottom"/>
    <Button Content="Dock=Left"/>
    <Button Content="Dock=Right" DockPanel.Dock="Right"/>
    <Button Content="LastChildFill=True"/>
</DockPanel>

任何其他方式我可以实现这一点,而无需使用DockPanel。谢谢


9345
2017-08-14 10:47


起源

你可以使用 DockPanel中 控制。 - UIlrvnd
你为什么不想使用DockPanel?这就是它的用途:P ...... - UIlrvnd
DockPanel确实是正确的组件。您也可以使用简单的Grid,但如果您有一个定义其他元素位置的中心元素,则DockPanel是合适的。 - Arhiman


答案:


你可以使用网格,(注意星号大小)

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="Auto"/>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="Auto"/>
    </Grid.ColumnDefinitions>
    <!-- If not specified, then Grid.Column="0" Grid.Row="0" are defaults-->
    <Button Content="Dock=Top" Grid.ColumnSpan="3"/>
    <Button Content="Dock=Bottom" Grid.Row="2" Grid.ColumnSpan="3"/>
    <Button Content="Dock=Left" Grid.Row="1"/>
    <Button Content="Dock=Right" Grid.Column="2" Grid.Row="1" />
    <Button Content="LastChildFill=True" Grid.Column="1" Grid.Row="1"/>
</Grid>

您可以使用边距和对齐(边距是近似值)

<Grid>
    <Button Content="Dock=Top" VerticalAlignment="Top"/>
    <Button Content="Dock=Bottom" VerticalAlignment="Bottom"/>
    <Button Content="Dock=Left" HorizontalAlignment="Left" Margin="0,35"/>
    <Button Content="Dock=Right" HorizontalAlignment="Right" Margin="0,35" />
    <Button Content="LastChildFill=True" Margin="75,35"/>
</Grid>

你可以使用StackPanels(这需要更多的工作来填补空间)

<StackPanel Orientation="Vertical" VerticalAlignment="Center" HorizontalAlignment="Center">        
    <Button Content="Dock=Top" />
    <StackPanel Orientation="Horizontal" >
    <Button Content="Dock=Left" />
        <Button Content="LastChildFill=True" />
        <Button Content="Dock=Right" />
    </StackPanel>
    <Button Content="Dock=Bottom" />
</StackPanel>

14
2017-08-14 11:27



谢谢你的回答。我们在winform中使用锚属性....在wpf中有类似锚属性的东西吗? - Thomas
听起来像它类似于Horizo​​ntalAlignment和VerticalAlignment,试试这个解释 msdn.microsoft.com/en-us/library/ms751709.aspx 那里也有HA和VA的链接。 - AlSki
我想问你一个问题,因为我觉得你在WPF听起来不够。是否有任何网站为wpf提供巨大的示例代码,仅用于开发有光泽的有吸引力的UI。我搜索谷歌但没有找到。如果你知道那么请给我那些网址。谢谢 - Thomas


 <DockPanel>
    <Button DockPanel.Dock="Left" Content="Left"></Button>
    <Button DockPanel.Dock="Right" Content="Right"></Button>

    <Button DockPanel.Dock="Top" Content="Top"></Button>
    <Button DockPanel.Dock="Bottom" Content="Bottom"></Button>
    <Button DockPanel.Dock="Left" Content="Center" HorizontalAlignment="Center"></Button>

</DockPanel>

2
2018-05-19 04:25