forked from SuperGouge/ChanThreadWatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmDownloads.Designer.cs
118 lines (113 loc) · 4.94 KB
/
frmDownloads.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
namespace JDP {
partial class frmDownloads {
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
this.lvDownloads = new System.Windows.Forms.ListView();
this.chURL = new System.Windows.Forms.ColumnHeader();
this.chSize = new System.Windows.Forms.ColumnHeader();
this.chPercent = new System.Windows.Forms.ColumnHeader();
this.chSpeed = new System.Windows.Forms.ColumnHeader();
this.tmrUpdateList = new System.Windows.Forms.Timer(this.components);
this.chTry = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// lvDownloads
//
this.lvDownloads.AllowColumnReorder = true;
this.lvDownloads.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lvDownloads.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chURL,
this.chSize,
this.chPercent,
this.chSpeed,
this.chTry
});
this.lvDownloads.FullRowSelect = true;
this.lvDownloads.HideSelection = false;
this.lvDownloads.Location = new System.Drawing.Point(8, 8);
this.lvDownloads.Name = "lvDownloads";
this.lvDownloads.Size = new System.Drawing.Size(620, 196);
this.lvDownloads.TabIndex = 0;
this.lvDownloads.UseCompatibleStateImageBehavior = false;
this.lvDownloads.View = System.Windows.Forms.View.Details;
//
// chURL
//
this.chURL.Text = "URL";
this.chURL.Width = 355;
//
// chSize
//
this.chSize.Text = "Size";
this.chSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.chSize.Width = 70;
//
// chPercent
//
this.chPercent.Text = "Progress";
this.chPercent.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// chSpeed
//
this.chSpeed.Text = "Speed";
this.chSpeed.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.chSpeed.Width = 80;
//
// tmrUpdateList
//
this.tmrUpdateList.Enabled = true;
this.tmrUpdateList.Tick += new System.EventHandler(this.tmrUpdateList_Tick);
//
// chTry
//
this.chTry.Text = "Try";
this.chTry.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.chTry.Width = 35;
//
// frmDownloads
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(636, 213);
this.Controls.Add(this.lvDownloads);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(260, 140);
this.Name = "frmDownloads";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Downloads";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView lvDownloads;
private System.Windows.Forms.ColumnHeader chURL;
private System.Windows.Forms.ColumnHeader chPercent;
private System.Windows.Forms.ColumnHeader chSize;
private System.Windows.Forms.Timer tmrUpdateList;
private System.Windows.Forms.ColumnHeader chSpeed;
private System.Windows.Forms.ColumnHeader chTry;
}
}