Ejemplo n.º 1
0
        /// <summary>
        /// Closes this notification panel instance.
        /// </summary>
        public void Close()
        {
            foreach (Control control in tableLayoutPanel.Controls)
            {
                NotifyBanner banner = control as NotifyBanner;
                if (banner == null)
                {
                    continue;
                }

                banner.Close();
            }
        }