This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
xerobrowser/WebBrowser/DownloadProgress.cs
2023-02-20 23:24:10 +13:00

40 lines
782 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DiamondCreeperBrowser
{
public partial class DownloadProgress : Form
{
public DownloadProgress()
{
InitializeComponent();
}
private void DownloadProgress_Load(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void DownloadProgress_FormClosing(object sender, FormClosingEventArgs e)
{
}
private void bunifuLabel1_Click(object sender, EventArgs e)
{
}
}
}