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