Ejemplo n.º 1
0
 public UCMonitorPreviewBox()
 {
     InitializeComponent();
     Counter = new Counter();
     GlobalSettings = new GlobalSettings();
     //_boxSizeChanged = false;
 }
Ejemplo n.º 2
0
        public UCCounter()
        {
            InitializeComponent();
            _counter = new Counter();

            FormTimer = new FormTimer(_counter);
            FormTimer.Hide();
        }
Ejemplo n.º 3
0
 public UCCounterTypeChanger()
 {
     InitializeComponent();
     _counter = new Counter();
     FormTimer1 = new FormTimer(_counter);
     FormTimer1.Hide();
     FormTimer2 = new FormTimer(_counter);
     FormTimer2.Hide();
     UcCounter = new UCCounter();
 }
Ejemplo n.º 4
0
 public UCTimeSettings()
 {
     InitializeComponent();
     Counter = new Counter();
     _formTimer1 = new FormTimer(Counter);
     _formTimer1.Hide();
     _formTimer2 = new FormTimer(Counter);
     _formTimer2.Hide();
     GlobalSettings = new GlobalSettings();
     UcCounter = new UCCounter();
     _ucEffectBox = new UCEffectBox();
 }
Ejemplo n.º 5
0
        public UCFontSizeBox()
        {
            InitializeComponent();

            _counter = new Counter();
            _formTimer = new FormTimer(_counter);
            _formTimer.Hide();
            _globalSettings = new GlobalSettings();

            //nupdFontSize.Value = _counter.FontSize;
            nupdFontSize.Value = 219;
        }
Ejemplo n.º 6
0
        //public FormTimer(Counter counter, int screen)
        //{
        //    InitializeComponent();
        //    Location = Screen.AllScreens[screen].WorkingArea.Location;
        //    FormBorderStyle = FormBorderStyle.None;
        //    WindowState = FormWindowState.Maximized;
        //    _counter = counter;
        //    labelTime.Text = "";
        //}
        public FormTimer(Counter counter)
        {
            InitializeComponent();

            Location = Screen.AllScreens[counter.CurrentMonitor].WorkingArea.Location;
            FormBorderStyle = FormBorderStyle.None;
            WindowState = FormWindowState.Maximized;
            _counter = counter;
            _onScreen = false;
            labelTime.Text = "";
            FontSize = 219;
            Formatum = 0;
        }
Ejemplo n.º 7
0
        public UCEffectBox()
        {
            InitializeComponent();
            _counter = new Counter();

            FormTimer1 = new FormTimer(_counter);
            FormTimer1.Hide();

            FormTimer2 = new FormTimer(_counter);
            FormTimer2.Hide();

            chbEffectBackCounter.Text = "Visszaszámlálásnál figyelmeztetés \r\n( KI )";
            chbFlash.Text = "Villog, ha lejárt az idő  \r\n( KI )";
        }
Ejemplo n.º 8
0
        public UCMonitorControlBox()
        {
            InitializeComponent();
            _counter = new Counter();
            _globalSettings = new GlobalSettings();

            nupdMonitor.Minimum = 1;
            nupdMonitor.Maximum = _counter.MonitorQuantity;

            _minimized = false;
            _maximized = true;

            _formTimer = new FormTimer(_counter);
            _formTimer.Hide();

            _windowPriority = 3;
        }
Ejemplo n.º 9
0
        public FormMain()
        {
            InitializeComponent();

            _counter = new Counter();
            formData = new MainFormData();
            savePath = "";
            _globalSettings = new GlobalSettings();

            //Mentett fájlok helyének meghatározása
            setSavePath();

            myControlInit();

            _formTimer1 = new FormTimer(_counter);
            _formTimer1.SetCounterDefaultColors();
            _formTimer2 = new FormTimer(_counter);
            _formTimer2.SetCounterDefaultColors();
            _formTimer2.Formatum = 1;
            _formTimer1.Hide();

            SetCounterData();
        }
Ejemplo n.º 10
0
        public UCTimeDirection()
        {
            InitializeComponent();

            Counter = new Counter();
        }