如何将Wrappanel子文本框宽度设置为*?

时间:2016-06-17 08:40:42

标签: wpf xaml

如何制作第一个孩子Wrappanel文本框大小应该*并且尽可能多地延伸。第二个wrappanel只包含按钮,应显示为Auto。请帮助实现这个目标

        <WrapPanel Orientation="Horizontal" Margin="1,1,1,1"  Width="Auto" >
            <TextBlock Grid.Row="1" Grid.Column="0" Text="Command: " VerticalAlignment="Center"/>
            <TextBox MinWidth="130" MinHeight="30"></TextBox> <!-- Size should be * and strech as much as space avail-->
        </WrapPanel>


        <WrapPanel Orientation="Horizontal" Margin="1,1,1,1" Width="200"  >
            <Button  Content="Prev" />
            <Button Content="Next" />
            <Button   CommandParameter="{Binding ElementName=textConsole}" Content="Execute" />
            <Button  Content="Clear Output" />
        </WrapPanel>

    </WrapPanel>

1 个答案:

答案 0 :(得分:0)

我没有对此进行测试,但我认为它应该可行。

ed-search-prev-history

对于另一个WrapPanel,我不太清楚你想要什么。按钮是否已经不能满足要求?