Skip to content

Commit 465265d

Browse files
committed
Downloader
1 parent 4968347 commit 465265d

16 files changed

+4741
-26
lines changed

Download-Manager/App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5+
</startup>
6+
</configuration>

Download-Manager/DM.Designer.cs

+144
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Download-Manager/DM.cs

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace Download_Manager
12+
{
13+
public partial class DM : Form
14+
{
15+
public DM()
16+
{
17+
InitializeComponent();
18+
}
19+
20+
private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e)
21+
{
22+
23+
}
24+
25+
private void label1_Click(object sender, EventArgs e)
26+
{
27+
28+
}
29+
30+
31+
private void labelX_Click(object sender, EventArgs e)
32+
{
33+
Environment.Exit(0);
34+
}
35+
36+
private void labelMin_Click(object sender, EventArgs e)
37+
{
38+
this.WindowState = FormWindowState.Minimized;
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)