Yazı Font Küçült Yazı Font Büyült

statusStrip te ProgressBar Kullanımı

İlk önce formunuza 1 adet statusStrip ve button ekleyin. Daha sonra statusStrip te tıklayın ve 1 adet toolStripProgressBar1 ekleyin. Aşağıdaki şekilleri inceleyin.

Resim1

Şekil 1

Resim2

Şekil 2

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            toolStripProgressBar1.Size = new System.Drawing.Size(200, 20);

        }

        private void button1_Click(object sender, EventArgs e)
        {
            int i;
            toolStripProgressBar1.Minimum = 0;
            toolStripProgressBar1.Maximum = 100;
            for (i = toolStripProgressBar1.Minimum; i < toolStripProgressBar1.Maximum;i++ )
            {
                toolStripProgressBar1.Value = i;

                System.Threading.Thread.Sleep(30);
            }
        }
    }
}

//Bir sonraki makalede görüşmek üzere. Bahadır