示例#1
0
        public Info()
        {
            InitializeComponent();

            Screen screen = Screen.FromPoint(Cursor.Position);

            this.Location = new Point(screen.WorkingArea.Width - this.Width, screen.WorkingArea.Height - this.Height);

            label1.Text       = ApplicationStartup.Get().currentText;
            pictureBox1.Image = ApplicationStartup.Get().baseImage;
            label3.Text       = ApplicationStartup.Get().warningText;
        }
示例#2
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     label1.Text       = ApplicationStartup.Get().currentText;
     pictureBox1.Image = ApplicationStartup.Get().baseImage;
     label3.Text       = ApplicationStartup.Get().warningText;
 }