Ejemplo n.º 1
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            Stylish.SetGradientBackground(filenamePanel,
                                          new Stylish.GradientStyle(Color.LightBlue, Color.PaleTurquoise, 90F));

            Stylish.SetGradientBackground(toolStrip1,
                                          new Stylish.GradientStyle(Color.PaleTurquoise, Color.LightBlue, -90F));
        }
Ejemplo n.º 2
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            LoadUsersList();

            Stylish.SetGradientBackground(panel1,
                                          new Stylish.GradientStyle(Color.DarkTurquoise, Color.LightBlue, 90F));

            Stylish.SetGradientBackground(groupBox1,
                                          new Stylish.GradientStyle(Color.MediumTurquoise, Color.LightBlue));
        }
Ejemplo n.º 3
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            //load volume and problems data at once
            if (LocalDatabase.IsReady)
            {
                Interactivity.ProblemDatabaseUpdated();
            }

            Stylish.SetGradientBackground(plistPanel,
                                          new Stylish.GradientStyle(Color.LightCyan, Color.PaleTurquoise, -90F));
        }
Ejemplo n.º 4
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
            AssignAspectToSubList();
            dateTimePicker1.Value = DateTime.Now.Subtract(new TimeSpan(7, 0, 0, 0));

            LoadUsernameList();

            Stylish.SetGradientBackground(titleBox1,
                                          new Stylish.GradientStyle(Color.LightBlue, Color.PaleTurquoise, 90F));

            Stylish.SetGradientBackground(toolStrip1,
                                          new Stylish.GradientStyle(Color.PaleTurquoise, Color.LightBlue, 90F));
        }
Ejemplo n.º 5
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            LoadUsernames();
            SetViewMenu();
            AssignAspectFunctions();
            SelectUpdateRateMenu();
            lastSubmissions1.MakeColumnSelectMenu(MainContextMenu);

            ShowUserSub(RegistryAccess.DefaultUsername);

            Stylish.SetGradientBackground(titleBackPanel,
                                          new Stylish.GradientStyle(Color.PowderBlue, Color.PaleTurquoise, 90F));
        }
Ejemplo n.º 6
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            AssignAspectFunctions();
            SelectUpdateRateMenu();

            //start refresh task
            if (AutoUpdateStatus)
            {
                JudgeStatusRefresh();
            }

            Stylish.SetGradientBackground(panel1,
                                          new Stylish.GradientStyle(Color.LightBlue, Color.PaleTurquoise, 90F));
        }
Ejemplo n.º 7
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            //load volume and problems data at once
            if (LocalDatabase.IsReady)
            {
                Interactivity.ProblemDatabaseUpdated();
                Interactivity.CategoryDataUpdated();
            }

            Stylish.SetGradientBackground(plistPanel,
                                          new Stylish.GradientStyle(Color.LightCyan, Color.PaleTurquoise, -90F));

            if (Properties.Settings.Default.ProblemViewExpandCollapse)
            {
                CollapsePanel2View();
            }
        }
Ejemplo n.º 8
0
 protected override void OnLoad(EventArgs e)
 {
     base.OnLoad(e);
     Stylish.SetGradientBackground(basicInfoTab,
                                   new Stylish.GradientStyle(Color.LightCyan, Color.LightBlue, 90));
 }