ProgressBar Kullanımı
Merhaba arkadaşlar. ProgressBar ile ilgili örnek yapacağız. Formumuza 1 adet Timer ekleyin.
Form1. Cs
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
for (int i = 0; i <= 10; i++)
{
if (progressBar1.Value < 100)
{
progressBar1.Value += i;
label1.Text = progressBar1.Value + " %";
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
progressBar1.Minimum=0;
progressBar1.Maximum = 100;
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Bol kodlu günler. Bahadır ŞAHİN