Summary description for PopupNotify. Note: No properties may be changed after Show - don't do it! It won't cause an error but it'll mess you up.
Наследование: System.Windows.Forms.Form
Пример #1
0
        private void Collapse()
        {
            lock (openPopups)
            {
                int thisIndex = openPopups.IndexOf(this);

                for (int i = thisIndex - 1; i >= 0; i--)
                {
                    PopupNotify popup = (PopupNotify)openPopups[i];

                    if (sysLoc == SystemTrayLocation.BottomLeft || sysLoc == SystemTrayLocation.BottomLeft)
                    {
                        popup.Top += Height;
                    }
                    else
                    {
                        popup.Top -= Height;
                    }
                }

                openPopups.RemoveAt(thisIndex);
            }
        }