#region Imports
|
|
using DPumpHydr.WinFrmUI.RLT.Controls;
|
using System.ComponentModel;
|
using System.Windows.Forms.Design;
|
|
#endregion
|
|
namespace DPumpHydr.WinFrmUI.RLT.Design.Poison
|
{
|
#region PoisonPanelDesignerDesign
|
|
internal class PoisonPanelDesigner : ParentControlDesigner
|
{
|
public override void Initialize(IComponent component)
|
{
|
base.Initialize(component);
|
|
if (Control is PoisonPanel)
|
{
|
//EnableDesignMode(((PoisonPanel)Control).ScrollablePanel, "ScrollablePanel");
|
}
|
}
|
}
|
|
#endregion
|
}
|