tangxu
2024-10-22 7a0d1efa4784d176a32f182ecae671711e98ca92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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<PoisonPaintEventArgs> CustomPaintBackground;
        event EventHandler<PoisonPaintEventArgs> CustomPaint;
        event EventHandler<PoisonPaintEventArgs> 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
}