I have three splitpanel and when the auto scroll is enabled some lines appear in the splitpanel.
Following attached the picture.
Thank you for all.
2 Answers, 1 is accepted
0
Julian Benkov
Telerik team
answered on 02 Aug 2012, 09:36 AM
Hello Jean,
I logged the issue in our Public Issue Tracking System. The fix will be available in one of the next releases. Currently, you can Invalidate the SplitPanel using the Scroll event to workaround the issue. Here is a code snippet example:
using System.Windows.Forms;
using Telerik.WinControls.UI;
namespace Lab.Dock
{
public partial class SplitContainerFixedPanel : Form
{
private RadSplitContainer splitContainer = new RadSplitContainer();
public SplitContainerFixedPanel()
{
InitializeComponent();
splitContainer.Dock = DockStyle.Fill;
splitContainer.Parent = this;
splitContainer.BringToFront();
SplitPanel panel1 = new SplitPanel();
RadAutoCompleteBox autoCompleteBox = new RadAutoCompleteBox();
autoCompleteBox.Location = new System.Drawing.Point(10, 10);
autoCompleteBox.Size = new System.Drawing.Size(1000, 300);