forked from wadetb/renderdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThumbnailStrip.Designer.cs
More file actions
106 lines (100 loc) · 4.77 KB
/
ThumbnailStrip.Designer.cs
File metadata and controls
106 lines (100 loc) · 4.77 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
namespace renderdocui.Controls
{
partial class ThumbnailStrip
{
/// <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()
{
System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
this.panel = new System.Windows.Forms.Panel();
this.hscroll = new System.Windows.Forms.HScrollBar();
this.vscroll = new System.Windows.Forms.VScrollBar();
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 2;
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
tableLayoutPanel1.Controls.Add(this.panel, 0, 0);
tableLayoutPanel1.Controls.Add(this.hscroll, 0, 1);
tableLayoutPanel1.Controls.Add(this.vscroll, 1, 0);
tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 2;
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
tableLayoutPanel1.Size = new System.Drawing.Size(791, 246);
tableLayoutPanel1.TabIndex = 1;
//
// panel
//
this.panel.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel.Location = new System.Drawing.Point(0, 0);
this.panel.Margin = new System.Windows.Forms.Padding(0);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(775, 230);
this.panel.TabIndex = 0;
this.panel.ControlAdded += new System.Windows.Forms.ControlEventHandler(this.panel_ControlAddRemove);
this.panel.ControlRemoved += new System.Windows.Forms.ControlEventHandler(this.panel_ControlAddRemove);
this.panel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.panel_MouseClick);
//
// hscroll
//
this.hscroll.Dock = System.Windows.Forms.DockStyle.Bottom;
this.hscroll.Location = new System.Drawing.Point(0, 230);
this.hscroll.Name = "hscroll";
this.hscroll.Size = new System.Drawing.Size(775, 16);
this.hscroll.TabIndex = 1;
this.hscroll.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hscroll_Scroll);
//
// vscroll
//
this.vscroll.Dock = System.Windows.Forms.DockStyle.Right;
this.vscroll.Location = new System.Drawing.Point(775, 0);
this.vscroll.Name = "vscroll";
this.vscroll.Size = new System.Drawing.Size(16, 230);
this.vscroll.TabIndex = 2;
this.vscroll.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vscroll_Scroll);
//
// ThumbnailStrip
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tableLayoutPanel1);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "ThumbnailStrip";
this.Size = new System.Drawing.Size(791, 246);
this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ThumbnailStrip_Layout);
tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel;
private System.Windows.Forms.HScrollBar hscroll;
private System.Windows.Forms.VScrollBar vscroll;
}
}