#region Imports using DPumpHydr.WinFrmUI.RLT.Action.Metro; using System.ComponentModel.Design; using System.Windows.Forms.Design; #endregion namespace DPumpHydr.WinFrmUI.RLT.Design.Metro { #region MetroLabelDesignerDesign internal class MetroLabelDesigner : ControlDesigner { private DesignerActionListCollection _actionListCollection; public override DesignerActionListCollection ActionLists => _actionListCollection ??= new DesignerActionListCollection { new MetroLabelActionList(Component) }; } #endregion }