-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWorkspaceBrowserDlg.Designer.cs
171 lines (165 loc) · 7.33 KB
/
WorkspaceBrowserDlg.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
namespace P4EXP
{
partial class WorkspaceBrowserDlg
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WorkspaceBrowserDlg));
this.Text = Properties.Resources.WorkspaceBrowser_Title;
this.OKBtn = new P4EXP.I18nControls.GridButton();
this.CancelBtn = new P4EXP.I18nControls.GridButton();
this.listView1 = new P4EXP.I18nControls.GridDoubleBufferedListView();
this.workspaceHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.ownerHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.lastAccessedHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.descriptionHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.gridLayoutPanel1 = new P4EXP.I18nControls.GridLayoutPanel();
this.gridPanel1 = new P4EXP.I18nControls.GridPanel();
this.gridLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// OKBtn
//
resources.ApplyResources(this.OKBtn, "OKBtn");
this.OKBtn.CellHeight = 0;
this.OKBtn.CellWidth = 0;
this.OKBtn.Column = 1;
this.OKBtn.ColumnsSpanned = 0;
this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OKBtn.Name = "OKBtn";
this.OKBtn.Row = 1;
this.OKBtn.RowsSpanned = 0;
this.OKBtn.UseVisualStyleBackColor = true;
this.OKBtn.YOffset = 0;
this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
this.OKBtn.Text = Properties.Resources.WorkspaceBrowser_OKBtn;
//
// CancelBtn
//
resources.ApplyResources(this.CancelBtn, "CancelBtn");
this.CancelBtn.CellHeight = 0;
this.CancelBtn.CellWidth = 0;
this.CancelBtn.Column = 2;
this.CancelBtn.ColumnsSpanned = 0;
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Row = 1;
this.CancelBtn.RowsSpanned = 0;
this.CancelBtn.UseVisualStyleBackColor = true;
this.CancelBtn.YOffset = 0;
this.CancelBtn.Text = Properties.Resources.WorkspaceBrowser_CancelBtn;
//
// listView1
//
this.listView1.AllowColumnReorder = true;
resources.ApplyResources(this.listView1, "listView1");
this.listView1.CellHeight = 0;
this.listView1.CellWidth = 0;
this.listView1.Column = 0;
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.workspaceHeader,
this.ownerHeader,
this.lastAccessedHeader,
this.descriptionHeader});
this.listView1.ColumnsSpanned = 2;
this.listView1.FullRowSelect = true;
this.listView1.HideActionsColumn = false;
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.OwnerDraw = true;
this.listView1.Row = 0;
this.listView1.RowsSpanned = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.YOffset = 0;
this.listView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseDoubleClick);
//
// workspaceHeader
//
this.workspaceHeader.Text = Properties.Resources.WorkspaceBrowser_WorkspaceHeader;
//
// ownerHeader
//
this.ownerHeader.Text= Properties.Resources.WorkspaceBrowser_OwnerHeader;
//
// lastAccessedHeader
//
this.lastAccessedHeader.Text= Properties.Resources.WorkspaceBrowser_LastAccessedHeader;
//
// descriptionHeader
//
this.descriptionHeader.Text= Properties.Resources.WorkspaceBrowser_DescriptionHeader;
//
// gridLayoutPanel1
//
this.gridLayoutPanel1.Controls.Add(this.gridPanel1);
this.gridLayoutPanel1.Controls.Add(this.listView1);
this.gridLayoutPanel1.Controls.Add(this.CancelBtn);
this.gridLayoutPanel1.Controls.Add(this.OKBtn);
resources.ApplyResources(this.gridLayoutPanel1, "gridLayoutPanel1");
this.gridLayoutPanel1.EnableDesignerGrid = false;
this.gridLayoutPanel1.EnableDesignerLayout = true;
this.gridLayoutPanel1.EnableParentResize = false;
this.gridLayoutPanel1.MinimumColumnWidth = 10;
this.gridLayoutPanel1.MinimumRowHeight = 10;
this.gridLayoutPanel1.Name = "gridLayoutPanel1";
//
// gridPanel1
//
resources.ApplyResources(this.gridPanel1, "gridPanel1");
this.gridPanel1.CellHeight = 0;
this.gridPanel1.CellWidth = 0;
this.gridPanel1.Column = 0;
this.gridPanel1.ColumnsSpanned = 0;
this.gridPanel1.Name = "gridPanel1";
this.gridPanel1.Row = 1;
this.gridPanel1.RowsSpanned = 0;
this.gridPanel1.YOffset = 0;
//
// UsersBrowserDlg
//
this.AcceptButton = this.OKBtn;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelBtn;
this.Controls.Add(this.gridLayoutPanel1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "WorkspaceBrowserDlg";
this.gridLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
//private WorkspaceToolWindowControl workspaceToolWindowControl1;
private I18nControls.GridButton OKBtn;
private I18nControls.GridButton CancelBtn;
private I18nControls.GridDoubleBufferedListView listView1;
private System.Windows.Forms.ColumnHeader workspaceHeader;
private System.Windows.Forms.ColumnHeader ownerHeader;
private System.Windows.Forms.ColumnHeader lastAccessedHeader;
private System.Windows.Forms.ColumnHeader descriptionHeader;
private I18nControls.GridLayoutPanel gridLayoutPanel1;
private I18nControls.GridPanel gridPanel1;
}
}