1-) C# Athena - Normal progresbarda yüzde gösterme
int yuzde;
progressBarOlView.Maximum = lb_olusturulacak_View.Items.Count;
progressBarOlView.Step = 1;
progressBarOlView.Value = 0;
for (int i = 0; i < lb_olusturulacak_View.Items.Count; i++) {
yuzde = (int)(((double)progressBarOlView.Value / (double)progressBarOlView.Maximum) * 100);
progressBarOlView.CreateGraphics().DrawString(yuzde.ToString() + "%", new Font("Arial", (float)8.25, FontStyle.Regular), Brushes.Black, new PointF(progressBarOlView.Width / 2 - 10, progressBarOlView.Height / 2 - 7));
progressBarOlView.PerformStep();
}