1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Praktika409
- {
- public partial class Form6 : Form
- {
- int koef = 1;
- public Form6()
- {
- InitializeComponent();
- // установка обработчика события Scroll
- trackBar1.Scroll += trackBar1_Scroll;
- InitializeComponent();
- this.Width = 400;
- button1.Width = 40;
- button1.Left = 40;
- button1.Text = "";
- button1.BackColor = Color.Aqua;
- timer1.Interval = 500; // 500 миллисекунд
- timer1.Enabled = true;
- button1.Click += button1_Click;
- timer1.Tick += timer1_Tick;
- }
- private void trackBar1_Scroll(object sender, EventArgs e)
- {
- label1.Text = String.Format("Текущее значение: {0}", trackBar1.Value);
- }
- private void button1_Click(object sender, EventArgs e)
- {
- if (timer1.Enabled == true)
- {
- timer1.Stop();
- }
- else
- {
- timer1.Start();
- }
- }
- void timer1_Tick(object sender, EventArgs e)
- {
- if (button1.Left == (this.Width - button1.Width - 10))
- {
- koef = -1;
- }
- else if (button1.Left == 0)
- {
- koef = 1;
- }
- button1.Left += 10 * koef;
- progressBar1.PerformStep();
- }
- private void progressBar1_Click(object sender, EventArgs e)
- {
- }
- }
- }
|