blob: 2622978dac8a2d99322ae3f4543ff8c805999d47 (
plain) (
blame)
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
|
namespace Project_Ports.Programs
{
partial class FileManager
{
/// <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 Component 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.imageList = new System.Windows.Forms.ImageList(this.components);
this.listView = new System.Windows.Forms.ListView();
this.txtPath = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// imageList
//
this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
this.imageList.ImageSize = new System.Drawing.Size(32, 32);
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
//
// listView
//
this.listView.LargeImageList = this.imageList;
this.listView.Location = new System.Drawing.Point(23, 58);
this.listView.Name = "listView";
this.listView.Size = new System.Drawing.Size(790, 501);
this.listView.TabIndex = 0;
this.listView.UseCompatibleStateImageBehavior = false;
this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
//
// txtPath
//
this.txtPath.BackColor = System.Drawing.Color.White;
this.txtPath.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtPath.Cursor = System.Windows.Forms.Cursors.Arrow;
this.txtPath.Font = new System.Drawing.Font("Consolas", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtPath.ForeColor = System.Drawing.Color.Black;
this.txtPath.Location = new System.Drawing.Point(23, 14);
this.txtPath.Multiline = true;
this.txtPath.Name = "txtPath";
this.txtPath.ReadOnly = true;
this.txtPath.Size = new System.Drawing.Size(789, 25);
this.txtPath.TabIndex = 2;
//
// FileManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.Controls.Add(this.txtPath);
this.Controls.Add(this.listView);
this.Name = "FileManager";
this.Size = new System.Drawing.Size(835, 575);
this.Load += new System.EventHandler(this.FileManager_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ImageList imageList;
private System.Windows.Forms.ListView listView;
private System.Windows.Forms.TextBox txtPath;
}
}
|