- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[DEVEXPRESS] Download multi file sử dụng progressbar trên cell gridview
Xin chào các bạn, bài viết hôm nay mình sẽ tiếp tục hướng dẫn các bạn cách download multi file sử dụng progressbar trên từng cell của Gridview devexpress C#.
[DEVEXPRESS] Download multi file with progressbar cell gridview c#
Các bạn có thể sử dụng bài viết này: để viết các dụng dạng cập nhật phần mềm...
Dưới đây là giao diện demo ứng dụng download file của mình:
Ở bài viết này, sẽ cung cấp cho các bạn sử dụng được thêm các chức năng trong một bài ví dụ demo của Devexpress
- Sử dụng Progressbar trên Gridview
- Thay đổi giá trị trực tiếp realtime trên Grid
- Downlaod file
- Lấy các thông số của download file: tốc độ, dung lượng file download.
- Download file Async Multi Task
Các bạn có thể Xem video demo ứng dụng của mình:
Source code C#:
using DevExpress.XtraGrid.Views.Grid;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace progressbar_GridView
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
protected override void OnShown(EventArgs e)
{
base.OnShown(e);
var listDownload = new List<FileDownload>();
var fileURL = new FileDownload();
fileURL.url = @"https://dl.teamviewer.com/download/version_15x/TeamViewer_Setup.exe";
fileURL.progress = 0;
fileURL.status = "Ready";
fileURL.speed = "";
fileURL.data = "";
fileURL.filename = Path.GetFileName(fileURL.url);
listDownload.Add(fileURL);
var fileURL2 = new FileDownload();
fileURL2.url = @"http://s3.amazonaws.com/calibrize/calibrize_2_setup.exe";
fileURL2.progress = 0;
fileURL2.data = "";
fileURL2.speed = "";
fileURL2.status = "Ready";
fileURL2.filename = Path.GetFileName(fileURL2.url);
listDownload.Add(fileURL2);
var fileURL3 = new FileDownload();
fileURL3.url = @"https://nodejs.org/dist/v13.9.0/node-v13.9.0-x64.msi";
fileURL3.progress = 0;
fileURL3.data = "";
fileURL3.speed = "";
fileURL3.status = "Ready";
fileURL3.filename = Path.GetFileName(fileURL3.url);
listDownload.Add(fileURL3);
var fileURL4 = new FileDownload();
fileURL4.url = @"https://download.microsoft.com/download/1/9/4/1949aa9c-6536-48f2-81fa-e7bb07410b36/SSMS-Setup-ENU.exe";
fileURL4.progress = 0;
fileURL4.data = "";
fileURL4.speed = "";
fileURL4.status = "Ready";
fileURL4.filename = Path.GetFileName(fileURL4.url);
listDownload.Add(fileURL4);
gridControl1.DataSource = listDownload;
}
private void UpdateProgressByRowHandle(int rowHandle, string column, string message)
{
gridControl1.BeginInvoke((Action)(() =>
{
gridView1.SetRowCellValue(rowHandle, column, message);
}));
}
private void gridView1_RowCellClick(object sender, RowCellClickEventArgs e)
{
if(e.Column.Name.Equals("grid_Action"))
{
var selectedRow = gridView1.GetSelectedRows();
var urls = string.Join(",", from r in selectedRow where gridView1.IsDataRow(Convert.ToInt32(r)) select gridView1.GetRowCellValue(Convert.ToInt32(r), "url"));
if (string.IsNullOrEmpty(urls))
{
var url_one = gridView1.GetRowCellValue(e.RowHandle, "url").ToString();
UpdateProgressByRowHandle(Convert.ToInt16(e.RowHandle.ToString()), "status", "Initializing...");
DownloadFile(url_one, Application.StartupPath + @"download" + Path.GetFileName(url_one), e.RowHandle);
return;
}
var list_Rowhandles = string.Join(",", from r in selectedRow where gridView1.IsDataRow(Convert.ToInt32(r)) select gridView1.GetRowHandle(Convert.ToInt32(r)));
var url = urls.Split(',');
var list_Rowhandle = list_Rowhandles.Split(',');
for (int i = 0; i < url.Length; i++)
{
UpdateProgressByRowHandle(Convert.ToInt16(list_Rowhandle[i].ToString()), "status", "Initializing...");
DownloadFile(url[i].ToString(), Application.StartupPath + @"download" + Path.GetFileName(url[i].ToString()), Convert.ToInt16(list_Rowhandle[i].ToString()));
}
}
}
public void DownloadFile(string urlAddress, string location, int rowHandle)
{
Stopwatch sw = new Stopwatch();
using (WebClient webClient = new WebClient())
{
webClient.DownloadFileCompleted += new AsyncCompletedEventHandler((sender, e) => Completed(sender, e, rowHandle, sw));
webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler((sender, e) => ProgressChanged(sender, e, rowHandle, sw));
Uri URL = new Uri(urlAddress);
sw.Start();
try
{
webClient.DownloadFileAsync(URL, location);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
private void ProgressChanged(object sender, DownloadProgressChangedEventArgs e, int rowHandle, Stopwatch sw)
{
UpdateProgressByRowHandle(rowHandle, "progress", e.ProgressPercentage.ToString());
UpdateProgressByRowHandle(rowHandle, "data", string.Format("{0} / {1} MB",
(e.BytesReceived / 1024d / 1024d).ToString("0.00"),
(e.TotalBytesToReceive / 1024d / 1024d).ToString("0.00")));
UpdateProgressByRowHandle(rowHandle, "status", "Downloading...");
UpdateProgressByRowHandle(rowHandle, "speed", string.Format("{0} Kb/s", (e.BytesReceived / 1024d / sw.Elapsed.TotalSeconds).ToString("0.00")));
}
private void Completed(object sender, AsyncCompletedEventArgs e, int rowHandle, Stopwatch sw)
{
if (e.Cancelled == true)
{
UpdateProgressByRowHandle(rowHandle, "status", "Fails.");
sw.Stop();
}
else
{
UpdateProgressByRowHandle(rowHandle, "status", "Finish.");
UpdateProgressByRowHandle(rowHandle, "speed", "0 Kb/s");
sw.Stop();
}
}
}
public class FileDownload
{
public string url { get; set; }
public int progress { get; set; }
public string speed { get; set; }
public string status { get; set; }
public string filename { get; set; }
public string data { get; set; }
}
}
Thanks for watching!