WPF:如何在DockPanel中拉伸中间孩子?

时间:2012-12-25 23:22:11

标签: c# wpf xaml textbox dockpanel

我将一个DockPanel添加到RadioButton元素,这样我就可以使用100%的宽度水平分发单选按钮标签,文本框和按钮。

在DockPanel中使用LastChildFill="True"拉伸最后一个元素。如果文本框是面板中的最后一个子项,这很好用。但是,由于按钮是最后一个元素并且具有固定宽度,因此应该拉伸文本框。但是,没有像2ndChildFill="True"这样的属性。

我的代码如下所示:

    <RadioButton HorizontalAlignment="Stretch"
                                        HorizontalContentAlignment="Stretch">
        <DockPanel >
            <TextBlock VerticalAlignment="Center">in location:</TextBlock>
            <TextBox Grid.Column="1" Margin="10,0,0,0">Path string</TextBox>
            <Button HorizontalAlignment="Right" 
                    Margin="10,0,0,0" Padding="3,0">...</Button>
        </DockPanel>
    </RadioButton>

它给了我这个:

wpf screenshot

任何想法,提示要解决这个问题?非常感谢...

2 个答案:

答案 0 :(得分:50)

您需要为元素设置DockPanel.Dock附加属性,并将TextBox作为最后一个元素:

<RadioButton HorizontalAlignment="Stretch"
             HorizontalContentAlignment="Stretch">
    <DockPanel LastChildFill="True">
        <TextBlock DockPanel.Dock="Left"
                   VerticalAlignment="Center"
                   Text="in location:" />
        <Button DockPanel.Dock="Right"
                Margin="10,0,0,0"
                Padding="3,0"
                Content="..." />
        <TextBox Margin="10,0,0,0">
            Path string
        </TextBox>
    </DockPanel>
</RadioButton>

答案 1 :(得分:1)

接受的答案正在解决您的问题,但会产生另一个问题。如果有人使用键盘 (TAB) 在您的界面中导航,Button 将在 TextBox 之前获得焦点。从长远来看,这可能会非常烦人。如果您不想中断 Tab 命令,请使用 Grid 而不是 DockPanel

<RadioButton HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition/>
            <ColumnDefinition Width="Auto"/>
        </Grid.ColumnDefinitions>
        <TextBlock Grid.Column="0" VerticalAlignment="Center">in location:</TextBlock>
        <TextBox Grid.Column="1" Margin="10,0,0,0">Path string</TextBox>
        <Button Grid.Column="2" HorizontalAlignment="Right" Margin="10,0,0,0" Padding="3,0">...</Button>
    </Grid>
</RadioButton>

另一种方法是使用 TabIndex 属性自己控制 Tab 键顺序。不过,这可能很棘手,尤其是当您在集合中显示控件时。

<RadioButton HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" TabIndex="0">
    <DockPanel LastChildFill="True">
        <TextBlock DockPanel.Dock="Left" VerticalAlignment="Center" Text="in location:" />
        <Button DockPanel.Dock="Right" Margin="10,0,0,0" Padding="3,0" Content="..." TabIndex="2"/>
        <TextBox Margin="10,0,0,0" TabIndex="1">Path string</TextBox>
    </DockPanel>
</RadioButton>