I\'m used from windows forms, that I create a panel, place controls inside it and give them DockStyle.Fill
to max out their size to the surrounding panel.
I
You can do what you want by just saying DockPanel
LastChildFill="True"
and then making sure what you want to be the filler is actually the last child!
The Grid is the beast of a layout that you can make do most anything, but the DockPanel is usually the right choice for your outermost layout panel. Here is an psuedocode example:
<DockPanel LastChildFill="True">
<MyMenuBar DockPanel.Dock="Top"/>
<MyStatus DockPanel.Dock="Bottom"/>
<MyFillingTabControl />
</DockPanel>
just wrap your controls in a grid with two rows. The grid will automatically use all space given to it and you can define the rows to take up all space left by giving them a height of "*". The first row in my example (Height="Auto") will take as much space as needed by the ribbon. Hope that helps.
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Ribbon Grid.Row="0" />
<TabPage Grid.Row="1" />
</Grid>
By adding the "Grid.Row=.." attribute to child controls of the grid they get assigned to rows of the grid. Then the grid will size it's children as defined by the row definitions.
The WPF equivalent of WinForms' DockStyle.Fill is:
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
This is the default for almost controls, so in general you don't have to do anything at all to have a WPF control fill its parent container: They do so automatically. This is true for all containers that don't squeeze their children to minimum size.
Common Mistakes
I will now explain several common mistakes that prevent HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
from working as expected.
1. Explicit Height or Width
One common mistake is to explicitly specify a Width or Height for a control. So if you have this:
<Grid>
<Button Content="Why am I not filling the window?" Width="200" Height="20" />
...
</Grid>
Just remove the Width and Height attributes:
<Grid>
<Button Content="Ahhh... problem solved" />
...
</Grid>
2. Containing panel squeezes control to minimum size
Another common mistake is to have the containing panel squeezing your control as tight as it will go. For example a vertical StackPanel will always squeeze its contents vertically as small as they will go:
<StackPanel>
<Button Content="Why am I squished flat?" />
</StackPanel>
Change to another Panel and you'll be good to go:
<DockPanel>
<Button Content="I am no longer squished." />
</DockPanel>
Also, any Grid row or column whose height is "Auto" will similarly squeeze its content in that direction.
Some examples of containers that don't squeeze their children are:
Some examples of containers that do squeeze their children are:
3. Explicit Height or Width further out
It's amazing how many times I see Grid or DockPanel given an explicit height and width, like this:
<Grid Width="200" Height="100">
<Button Content="I am unnecessarily constrainted by my containing panel" />
</Grid>
In general you never want to give any Panel an explicit Height or Width. My first step when diagnosing layout problems is to remove every explicit Height or Width I can find.
4. Window is SizeToContent when it shouldn't be
When you use SizeToContent, your content will be squeezed to minimum size. In many applications this is very useful and is the correct choice. But if your content has no "natural" size then you'll probably want to omit SizeToContent.
I was try many method here but can't solve my problem. (Fill other control in control)
Until i found it
<Name_Control Height="auto" Width="auto"/>
//default
//HorizontalAlignment="Stretch"
//VerticalAlignment="Stretch"
Example:
//UserControl:
<UserControl Name="UC_Test" Height="auto" Width="auto" />
//Grid:
<Grid Name="Grid_test" Grid.ColumnSpan="2" Grid.Row="2" />
//Code:
Grid_test.Children.Add(UC_Test);
For easy design
<UserControl Name="UC_Test" Height="100" Width="100" />
//Code
Grid_test.Children.Add(UC_Test);
UC_Test.Width = Double.NaN;
UC_Test.Height = Double.NaN;