wpf GridSplitter

T

tshad

I am trying to understand the GridSplitter.

If I have the following Grid, it resizes exactly the same whether I have the
GridSplitter or not and regardless of what the ResizeBehavior is.

I thought the "*" and "auto" determined the resizing behavior?

<Grid TextBlock.FontSize="48">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="250"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.RowSpan="2"
Content="2 Rows"/>

<GridSplitter Grid.Row="0"
Grid.RowSpan="2"
Grid.Column="1"
Width="8"
Background="Black"
ResizeBehavior="CurrentAndNext"
ResizeDirection="Columns"/>
<Button Grid.Column="2"
Grid.ColumnSpan="2"
Content="2 Columns"/>

<Button Grid.Row="1"
Grid.Column="2"
Content="1,2"/>
<Button Grid.Row="1"
Grid.Column="3"
Content="1,3"/>
</Grid>

Thanks,

Tom
 
G

Gregory A. Beamer

tshad said:
I am trying to understand the GridSplitter.

If I have the following Grid, it resizes exactly the same whether I have
the GridSplitter or not and regardless of what the ResizeBehavior is.

This is not a WPF group, it is an ASP.NET group. While you might find an
answer here, I would post on the WPF forum:

http://social.msdn.microsoft.com/Forums/en/wpf/threads/

--
Peace and Grace,
Greg

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

************************************************
| Think outside the box! |
************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top