aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/DownloadControl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/DownloadControl.cs')
-rw-r--r--ShiftOS.WinForms/DownloadControl.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/DownloadControl.cs b/ShiftOS.WinForms/DownloadControl.cs
new file mode 100644
index 0000000..b905167
--- /dev/null
+++ b/ShiftOS.WinForms/DownloadControl.cs
@@ -0,0 +1,48 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using ShiftOS.WinForms.Applications;
+using ShiftOS.Engine;
+
+namespace ShiftOS.WinForms
+{
+ public partial class DownloadControl : UserControl
+ {
+ public DownloadControl(int index)
+ {
+ InitializeComponent();
+ var d = DownloadManager.Downloads[index];
+ lbshiftneturl.Text = d.ShiftnetUrl;
+ pcicon.Image = FileSkimmerBackend.GetImage(d.Destination);
+ int bytesTransferred = 0;
+ DownloadManager.ProgressUpdate += (i, p) =>
+ {
+ try
+ {
+ this.Invoke(new Action(() =>
+ {
+ if (i == index)
+ {
+ bytesTransferred += 256;
+ pgprogress.Value = bytesTransferred;
+ lbshiftneturl.Text = $@"{d.ShiftnetUrl}
+{bytesTransferred} B out of {d.Bytes.Length} B transferred at 256 B per second.
+To {d.Destination}";
+ pgprogress.Maximum = d.Bytes.Length;
+ }
+ }));
+ }
+ catch
+ {
+
+ }
+ };
+ }
+ }
+}