FRSplitContainer.cs 771 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.ComponentModel;
  5. namespace FastReport.Controls
  6. {
  7. /// <summary>
  8. /// Split Container Control
  9. /// </summary>
  10. #if !DEBUG
  11. [DesignTimeVisible(false)]
  12. #endif
  13. public class FRSplitContainer : System.Windows.Forms.SplitContainer
  14. #if !DOTNET_4
  15. , System.ComponentModel.ISupportInitialize
  16. #endif
  17. {
  18. #region Constructor
  19. /// <summary>
  20. /// Constructor
  21. /// </summary>
  22. public FRSplitContainer() : base() { }
  23. #endregion Constructor
  24. #region ISupportInitialize Methods
  25. #if !DOTNET_4
  26. public void BeginInit() { }
  27. public void EndInit() { }
  28. #endif
  29. #endregion ISupportInitialize Methods
  30. }
  31. }