#region Imports using DPumpHydr.WinFrmUI.RLT.Drawing.Poison; using DPumpHydr.WinFrmUI.RLT.Enum.Poison; using DPumpHydr.WinFrmUI.RLT.Manager; using System; #endregion namespace DPumpHydr.WinFrmUI.RLT.Interface.Poison { #region IPoisonControlInterface public interface IPoisonControl { event EventHandler CustomPaintBackground; event EventHandler CustomPaint; event EventHandler CustomPaintForeground; ColorStyle Style { get; set; } ThemeStyle Theme { get; set; } PoisonStyleManager StyleManager { get; set; } bool UseCustomBackColor { get; set; } bool UseCustomForeColor { get; set; } bool UseStyleColors { get; set; } bool UseSelectable { get; set; } } #endregion }