Grid does not stretch in a docked content control

 If I put a Grid inside a docked Content control, it doesn't seem to stretch.
It only occupies the size of the child control?  

          <ContentControl Name="OutputDock" layout:SfDockingManager.Header="Output" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
                layout:SfDockingManager.CanClose="False"   
                layout:SfDockingManager.IsCloseButtonVisible="False"
                layout:SfDockingManager.SideInDockedMode="Bottom" 
                layout:SfDockingManager.DesiredHeightInDockedMode="300">
                <Grid Background="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
                    <TextBlock Text="Hi Syncfusion"/>
                </Grid>
            </ContentControl>


3 Replies

DR Durga Rajan Syncfusion Team April 30, 2018 11:23 AM UTC

Hi Dave, 

Thanks for contacting Syncfusion support. 

We have checked your query “Content of the Docked content control is not stretch” at our end and we suggest you to set Content alignment(HorizontalContentAlignment and VerticalContentAlignment) of the ContentControl property to Stretch instead of setting alignment(HorizontalAlignment and VerticalContentAlignment) of Content as Stretch.  Please find the modified code example, 

<ContentControl Name="OutputDock" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" layout:SfDockingManager.Header="Output" 
                layout:SfDockingManager.CanClose="False"    
                layout:SfDockingManager.IsCloseButtonVisible="False" 
                layout:SfDockingManager.SideInDockedMode="Bottom"  
                layout:SfDockingManager.DesiredHeightInDockedMode="300"> 
                <Grid Background="Red"> 
                    <TextBlock Text="Hi Syncfusion"/> 
                </Grid> 
            </ContentControl> 

Please download the sample for the same from below location, 


If we have misunderstood your query, please get back to us with more details. This would help us to provide solution at earliest. 

Regards, 
Durga S. 



DB Dave Brooks May 7, 2018 01:10 AM UTC

It worked perfectly, thank you.


DR Durga Rajan Syncfusion Team May 7, 2018 04:20 AM UTC

Hi Dave, 

We are glad to know that the provided solution has been worked at your end. Please let us know if you need any further assistance. 

Regards, 
Durga S. 


Loader.
Up arrow icon