Unplanned
Last Updated: 25 Jul 2024 12:04 by ADMIN
Ketan
Created on: 25 Jul 2024 12:00
Category: SplitContainer
Type: Bug Report
0
RadSplitContainer: When a splitter is dragged upward discards the fix height of splitpanel defined through MinimumSize/MinimumSize

To reproduce:

1. Add three SplitPanels in horizontal mode.

2. Use the following code snippet.

3. Drag the second splitter upwards. It changes the height on the first panel

void RadForm1_Load(object sender, EventArgs e)
{
    FixHeight(splitPanel1);
    FixHeight(splitPanel3);
}

public static void FixHeight(SplitPanel panel)
{
    panel.SizeInfo.MinimumSize = new Size(0, 55);
    panel.SizeInfo.MaximumSize = new Size(0, 55);
}

 

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 25 Jul 2024 12:04

Hi,

To workaround use:  radSplitContainer1.Splitters[0].Fixed = true;

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.