using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; namespace FastReport.Controls { /// /// Split Container Control /// #if !DEBUG [DesignTimeVisible(false)] #endif public class FRSplitContainer : System.Windows.Forms.SplitContainer #if !DOTNET_4 , System.ComponentModel.ISupportInitialize #endif { #region Constructor /// /// Constructor /// public FRSplitContainer() : base() { } #endregion Constructor #region ISupportInitialize Methods #if !DOTNET_4 public void BeginInit() { } public void EndInit() { } #endif #endregion ISupportInitialize Methods } }