This repository was archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
129 lines (122 loc) · 5.68 KB
/
MainForm.Designer.cs
File metadata and controls
129 lines (122 loc) · 5.68 KB
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
119
120
121
122
123
124
125
126
127
128
namespace PathCleaner
{
partial class MainForm
{
/// <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()
{
System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
"C:\\Program Files\\Something",
"Missing path",
"Missing path"}, -1);
System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
"C:\\Windows",
"No executables"}, -1);
this.problemList = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.label1 = new System.Windows.Forms.Label();
this.cleanupButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// problemList
//
this.problemList.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.problemList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.problemList.FullRowSelect = true;
this.problemList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.problemList.HideSelection = false;
listViewItem5.StateImageIndex = 0;
listViewItem6.StateImageIndex = 0;
this.problemList.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem5,
listViewItem6});
this.problemList.Location = new System.Drawing.Point(18, 38);
this.problemList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.problemList.Name = "problemList";
this.problemList.Size = new System.Drawing.Size(856, 476);
this.problemList.TabIndex = 0;
this.problemList.UseCompatibleStateImageBehavior = false;
this.problemList.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Path";
this.columnHeader1.Width = 411;
//
// columnHeader2
//
this.columnHeader2.Text = "Reason";
this.columnHeader2.Width = 136;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 14);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(200, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Problematic items in PATH:";
//
// cleanupButton
//
this.cleanupButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cleanupButton.Location = new System.Drawing.Point(18, 526);
this.cleanupButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.cleanupButton.Name = "cleanupButton";
this.cleanupButton.Size = new System.Drawing.Size(204, 45);
this.cleanupButton.TabIndex = 4;
this.cleanupButton.Text = "Remove Selected";
this.cleanupButton.UseVisualStyleBackColor = true;
this.cleanupButton.Click += new System.EventHandler(this.cleanupButton_Click);
//
// MainForm
//
this.AcceptButton = this.cleanupButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(896, 589);
this.Controls.Add(this.label1);
this.Controls.Add(this.problemList);
this.Controls.Add(this.cleanupButton);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "MainForm";
this.ShowIcon = false;
this.Text = "Path Cleaner";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView problemList;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button cleanupButton;
}
}