public static void getMessageBoxApparence()
 {
     MetroStyleColorTable metroColor = new MetroStyleColorTable();
     metroColor.YesButtonBackColor = Color.FromArgb(0, 191, 177);
     metroColor.NoButtonBackColor = Color.FromArgb(206, 59, 41);
     metroColor.OKButtonBackColor = Color.FromArgb(0, 191, 177);
     metroColor.BackColor = Color.FromArgb(245, 245, 245);
     metroColor.ForeColor = Color.FromArgb(105, 105, 105);//Cor da fonte
     metroColor.BorderColor = Color.FromArgb(0, 191, 177);
     metroColor.CloseButtonColor = Color.FromArgb(255, 255, 255);
     metroColor.CloseButtonHoverColor = Color.FromArgb(255, 255, 255);//Cor do botão com o mouse em cima
     metroColor.CaptionBarColor = Color.FromArgb(0, 191, 177);//Cor da barra
     metroColor.CaptionForeColor = Color.FromArgb(255, 255, 255);//Cor da fonte da barra
     MessageBoxAdv.MetroColorTable = metroColor;
     MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;
 }
예제 #2
0
        public static void getMessageBoxApparence()
        {
            MetroStyleColorTable metroColor = new MetroStyleColorTable();

            metroColor.YesButtonBackColor    = Color.FromArgb(0, 191, 177);
            metroColor.NoButtonBackColor     = Color.FromArgb(206, 59, 41);
            metroColor.OKButtonBackColor     = Color.FromArgb(0, 191, 177);
            metroColor.BackColor             = Color.FromArgb(245, 245, 245);
            metroColor.ForeColor             = Color.FromArgb(105, 105, 105);//Cor da fonte
            metroColor.BorderColor           = Color.FromArgb(0, 191, 177);
            metroColor.CloseButtonColor      = Color.FromArgb(255, 255, 255);
            metroColor.CloseButtonHoverColor = Color.FromArgb(255, 255, 255); //Cor do botão com o mouse em cima
            metroColor.CaptionBarColor       = Color.FromArgb(0, 191, 177);   //Cor da barra
            metroColor.CaptionForeColor      = Color.FromArgb(255, 255, 255); //Cor da fonte da barra
            MessageBoxAdv.MetroColorTable    = metroColor;
            MessageBoxAdv.MessageBoxStyle    = MessageBoxAdv.Style.Metro;
        }
예제 #3
0
파일: Program.cs 프로젝트: campbeb/DeadLock
 private static void Main(string[] args)
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     try
     {
         MetroStyleColorTable metroColorTable = new MetroStyleColorTable
         {
             BorderColor = Properties.Settings.Default.MetroColor,
             NoButtonBackColor = Properties.Settings.Default.MetroColor,
             YesButtonBackColor = Properties.Settings.Default.MetroColor,
             OKButtonBackColor = Properties.Settings.Default.MetroColor
         };
         MessageBoxAdv.MetroColorTable = metroColorTable;
     }
     catch (Exception ex)
     {
         MessageBoxAdv.Show(ex.Message, "DeadLock", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;
     Application.Run(new FrmMain(args));
 }
예제 #4
0
 private static void Main(string[] args)
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     try
     {
         MetroStyleColorTable metroColorTable = new MetroStyleColorTable
         {
             BorderColor        = Properties.Settings.Default.MetroColor,
             NoButtonBackColor  = Properties.Settings.Default.MetroColor,
             YesButtonBackColor = Properties.Settings.Default.MetroColor,
             OKButtonBackColor  = Properties.Settings.Default.MetroColor
         };
         MessageBoxAdv.MetroColorTable = metroColorTable;
     }
     catch (Exception ex)
     {
         MessageBoxAdv.Show(ex.Message, "DeadLock", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;
     Application.Run(new FrmMain(args));
 }