Hallo @ all
Ich möchte eine Progressbar machen, auf der die Prozentanzeige angezeigt wird. Dazu habe ich mir folgendes überlegt:
Jetzt wird aber nur der Prozentsatz angezeigt und nicht der Vortschritt in der Progressbar...
Was ist falsch daran?
Viele Grüße
Croasider
Ich möchte eine Progressbar machen, auf der die Prozentanzeige angezeigt wird. Dazu habe ich mir folgendes überlegt:
VB.NET-Quellcode
- Dim Bit As Bitmap = New Bitmap(PictureBox14.Width, PictureBox14.Height)
- Dim FileProgressBar As ProgressBar = New ProgressBar()
- Dim g As Graphics = Graphics.FromImage(Bit)
- Dim f As Font = New Font("Microsoft Sans Serif", 8, FontStyle.Regular, GraphicsUnit.Point, 5)
- Dim StausString As String = Math.Round(ProgressBar2.Value) & "%"
- FileProgressBar.Width = PictureBox14.Width
- FileProgressBar.Height = PictureBox14.Height
- FileProgressBar.Maximum = ProgressBar2.Maximum
- FileProgressBar.Value = Bass.BASS_ChannelGetPosition(stream)
- FileProgressBar.DrawToBitmap(Bit, New Rectangle(0, 0, PictureBox14.Width, PictureBox14.Height))
- Dim StringSize = g.MeasureString(StausString, f)
- g.DrawString(StausString, f, Brushes.Black, PictureBox14.Width / 2 - (StringSize.Width / 2), PictureBox14.Height / 2 - (StringSize.Height / 2))
- PictureBox14.Image = Bit
Jetzt wird aber nur der Prozentsatz angezeigt und nicht der Vortschritt in der Progressbar...
Was ist falsch daran?
Viele Grüße
Croasider