1

According to the Telerik docs, the relative size of the panels in a RadSplitContainer are set with the RelativeRatio property. I can't figure out how to use this property.

I would like a left panel and a right panel, the left panel 50% of the width of the right panel.

http://www.telerik.com/help/winforms/splitcontainer-overview.html

4

1 に答える 1

3

とても簡単です:

  • splitcontainer 内の両方のパネルを相対に設定します

  • 次に、右側のパネルの RelativeRatio を 0.66, 0 に設定し、左側のパネルの RelativeRatio を 0.33,0 に設定します。

例:

ここに画像の説明を入力

編集 :

ここに画像の説明を入力

編集2:

        splitPanel1.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Relative;
        splitPanel2.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Relative;

        splitPanel1.SizeInfo.RelativeRatio = new SizeF(0.33f, 0f);
        splitPanel2.SizeInfo.RelativeRatio = new SizeF(0.66f, 0f);
于 2012-11-21T20:39:39.443 に答える