-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathLayoutControlBase.Designer.cs
More file actions
80 lines (74 loc) · 3.16 KB
/
Copy pathLayoutControlBase.Designer.cs
File metadata and controls
80 lines (74 loc) · 3.16 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
using System.ComponentModel;
namespace MW5.Plugins.Printing.Controls.Layout
{
partial class LayoutControlBase
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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._vScrollBar = new System.Windows.Forms.VScrollBar();
this._hScrollBar = new System.Windows.Forms.HScrollBar();
this._hScrollBarPanel = new System.Windows.Forms.Panel();
this._hScrollBarPanel.SuspendLayout();
this.SuspendLayout();
//
// _vScrollBar
//
this._vScrollBar.Dock = System.Windows.Forms.DockStyle.Right;
this._vScrollBar.Location = new System.Drawing.Point(316, 0);
this._vScrollBar.Name = "_vScrollBar";
this._vScrollBar.Size = new System.Drawing.Size(17, 238);
this._vScrollBar.TabIndex = 0;
this._vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.VScrollBarScroll);
//
// _hScrollBar
//
this._hScrollBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this._hScrollBar.Location = new System.Drawing.Point(0, 0);
this._hScrollBar.Name = "_hScrollBar";
this._hScrollBar.Size = new System.Drawing.Size(314, 17);
this._hScrollBar.TabIndex = 0;
this._hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.HScrollBarScroll);
//
// _hScrollBarPanel
//
this._hScrollBarPanel.Controls.Add(this._hScrollBar);
this._hScrollBarPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this._hScrollBarPanel.Location = new System.Drawing.Point(0, 238);
this._hScrollBarPanel.Name = "_hScrollBarPanel";
this._hScrollBarPanel.Size = new System.Drawing.Size(333, 17);
this._hScrollBarPanel.TabIndex = 1;
//
// LayoutControlBase
//
this.Controls.Add(this._vScrollBar);
this.Controls.Add(this._hScrollBarPanel);
this.Name = "LayoutControlBase";
this.Size = new System.Drawing.Size(333, 255);
this._hScrollBarPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
}
}