ACPAddIn.Notification.Notification C# (CSharp) Method

Notification() public method

public Notification ( ) : System
return System
        public Notification()
        {
            InitializeComponent();

            BackColor = Color.Lime;
            TransparencyKey = Color.Lime;
            fadeInTimer = new Timer();
            fadeInTimer.Tick += new EventHandler(FadeInEvent);
            timer = new Timer();
            timer.Tick += new EventHandler(HideEvent);

            this.Opacity = 0;
        }