Пример #1
0
        /// <summary>
        /// Inicia tudo
        /// </summary>
        public Form1()
        {
            InitializeComponent();
            ShadowForm.ApplyShadows(this);

            // Sete um cursor melhor
            DllCursor.SetHandCursor(this);
        }
Пример #2
0
        public Failbox(string msg, bool sucess)
        {
            InitializeComponent();
            ShadowForm.ApplyShadows(this);

            // Sete um cursor melhor
            DllCursor.SetHandCursor(this);

            label1.Text = msg;

            if (sucess == false)
            {
                pictureBox1.BackgroundImage = Properties.Resources.alert;
            }
        }