WPF:避免重新绘制groupbox以适合内容

时间:2013-10-25 07:30:23

标签: wpf resize width redraw groupbox

我正在使用一个带有3行网格的页面,其中每行包含一个分组框。组框还包含具有不同内容的不同网格。 我想让所有的groupbox都适合相同的宽度。最初的情况就是如此。但是当第一个组框的内容从后面的代码更新时,组框会在非常短的时间内重新绘制(宽度较小),但是一秒后它再次适合宽度。 最初是:“未连接”,它变为“已连接”,因此宽度更小。 我的窗口宽度设置为最大化,我不想为页面和网格设置固定宽度和高度。有没有一种方法我只能更新内容,而不是试图适应内容?

示例(2行):

<Grid Grid.IsSharedSizeScope="True" Name="globalGrid" >
    <Grid.ColumnDefinitions>
        <ColumnDefinition SharedSizeGroup="globalCol"/>          
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition SharedSizeGroup="RowA"/> 
        <RowDefinition SharedSizeGroup="RowA"/>
        <RowDefinition SharedSizeGroup="RowA"/>
    </Grid.RowDefinitions>
    <GroupBox Header="Connection status" 
              Grid.Row="0" Grid.Column="0"
              HorizontalAlignment="Stretch">          
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition />                   
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition/>
                <ColumnDefinition/>
                <ColumnDefinition/>
            </Grid.ColumnDefinitions>             
            <Rectangle Name="Connected"  
                       Style="{StaticResource iconConnectStyle}" 
                       DataContext="{Binding DeviceConnection}" 
                       Grid.Row="0" Grid.Column="0"  />
            <TextBlock Text="device 1:" 
                       Grid.Row="0" Grid.Column="1" 
                       Style="{StaticResource statusText}"/>
            <TextBlock Name="dev1" Grid.Row="0" Grid.Column="2" 
                       Style="{StaticResource statusText}" />                      
        </Grid>
    </GroupBox>

    <GroupBox Header="processing status"  
              Grid.Row="1" Grid.Column="0"
              HorizontalAlignment="Stretch">          
        <StackPanel>
            <TextBlock x:Name="processState" Style="{StaticResource statusText}"/>
            <ProgressBar x:Name="progressState"/>
        </StackPanel>
    </GroupBox>      
</Grid>  

1 个答案:

答案 0 :(得分:0)

我现在正在使用UniformGrid,解决了这个问题......