在 StackPanel 中拉伸 TextBox [英] Stretch TextBox in StackPanel

查看:26
本文介绍了在 StackPanel 中拉伸 TextBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我用来执行此操作的当前 XAML...而且我一生都无法弄清楚如何扩展文本框以填充整列.任何人都可以指导我朝着正确的方向前进吗?

This is the current XAML i'm using to do this... and for the life of me cannot figure out how to expand the textbox to fill the entire column. Could anyone please guide me in the correct direction?

先谢谢你!

<Grid>        
    <Grid.RowDefinitions>
        <RowDefinition Height="15" />
        <RowDefinition Height="15" />
        <RowDefinition Height="*" />
        <RowDefinition Height="*" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>

    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="200" />
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>

    <!--ROW 0-->
    <TextBlock Text="DOMAIN:"/>
    <!--ROW 1-->
    <Separator Grid.Row="1" Grid.ColumnSpan="2"/>

    <!--ROW 2-->
    <TextBlock  Text="Connection credentials:" HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0"/>
    <StackPanel Orientation="Horizontal" Grid.Row="2" Grid.Column="1">
        <Button Content="EDIT" Style="{DynamicResource SquareButtonStyle}" Width="80" Margin="0,0,10,0"/>
        <TextBlock x:Name="CurrentCredentialslbl" Text="Connect as:" HorizontalAlignment="Stretch" VerticalAlignment="Center"/>
    </StackPanel>

    <!--ROW 3-->
    <TextBlock  Text="Find accounts in domain:" HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="3" Grid.Column="0"/>
    <StackPanel Orientation="Horizontal" Grid.Row="3" Grid.Column="1">
        <TextBox />
        <Button Content="Browse" Style="{DynamicResource SquareButtonStyle}" Width="80" Margin="10,0,0,0"/>
    </StackPanel>

    <!--ROW 4-->
    <CheckBox  Content="Only search in this container" HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="4" Grid.Column="0"/>
</Grid>

推荐答案

Grid 用 2 列代替 StackPanel 应该非常适合

Grid with 2 columns instead of StackPanel should fit perfectly

<Grid Grid.Row="3" Grid.Column="1">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>

    <TextBox />
    <Button Grid.Column="1" 
            Content="Browse" 
            Style="{DynamicResource SquareButtonStyle}" 
            Width="80" Margin="10,0,0,0"/>
</Grid>

这篇关于在 StackPanel 中拉伸 TextBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆