How to set width or height to RadSplitContainer wpf

Introduction

It is often a requirement when we use RadSplitContainer and we want to set width or height to RadSplitContainer. Here in this post we will see how to achieve this. When we use RadSplitContainer, we would like it to occupy a small space initially and if required we can drag it to take more space. This is normally achieved by setting the width for the control. If we are using two RadSplitContainer and if we wish to set these RadSplitContainer widths in 1:3 ratios, we may not be able to achieve this easily if you are not an expert in it. So here is a post to relieve your effort to achieve this.

If you can set the RadSplitContainer inside a Docking control, then we can set the width of each RadSplitContainer seperately. This is as shown below.

<telerik:RadDocking>
  <telerik:RadSplitContainer Width="300">
    <telerik:RadPaneGroup>
      <telerik:RadPane></telerik:RadPane>
    </telerik:RadPaneGroup>
  </telerik:RadSplitContainer>
  <telerik:RadSplitContainer>
      <telerik:RadPaneGroup>
        <telerik:RadPane></telerik:RadPane>   
      </telerik:RadPaneGroup>
  </telerik:RadSplitContainer>
</telerik:RadDocking>

If you try the above code, then the first RadSplitContainers will take a width of 300 and the other will take a width as required by its child controls. In most of the scenario we would like the second RadSplitContainers to take up the rest of the space. In order for the RadSplitContainers to take up the whole space you need to set the HasDocumentHost property of the Docking control to False. This is as shown below.

<telerik:RadDocking HasDocumentHost="False">
  <telerik:RadSplitContainer Width="300">
    <telerik:RadPaneGroup>
      <telerik:RadPane></telerik:RadPane>
    </telerik:RadPaneGroup>
  </telerik:RadSplitContainer>
  <telerik:RadSplitContainer>
    <telerik:RadPaneGroup>
      <telerik:RadPane></telerik:RadPane>   
    </telerik:RadPaneGroup>
  </telerik:RadSplitContainer>
</telerik:RadDocking>

Now the RadSplitContainer’s together will fill the rest of the space.

Setting Up Kafka

Apache Kafka is a high-throughput, low-latency event processing system designed to handle millions of data feeds per second. It has the c...… Continue reading

Libish Varghese Jacob

Libish Varghese JacobI am a lead engineer at a prominent wind turbine manufacturing firm. My interests span a diverse range, and immersing myself in technology is one of them. This platform serves as my primary knowledge base, where I seek information and insights. Moreover, I utilize this platform to share my experiences and experiments, hoping they may benefit those following a similar path. It's important to note that the suggestions I express here are based on my best knowledge at the time of writing and may not necessarily represent the optimal solutions. I wholeheartedly welcome any comments you may have to improve or refine my ideas. Your feedback is greatly appreciated and valued.