Hallo!
Ich arbeite in letzter Zeit viel an nem Launcher für mein Zukünftiges Projekt.
Hab das mit dem Download etc. alles schon geschafft.
Aber ich hänge jetzt bei der Progressbar fest die fortschreiten soll wenn der Download arbeitet..
Code:
C
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;
using System.Net;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click_1(object sender, EventArgs e)
{
using (var client = new WebClient())
{
String Pfad = textBox1.Text;
client.DownloadProgressChanged += client_DownloadProgressChanged;
client.DownloadFile("URL", Pfad);
}
}
void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
progressBar.Value = e.ProgressPercentage;
}
}
}
Alles anzeigen
Kann mir jemand helfen ?
LG
:hang: