moel@345
|
1 |
using System.Windows.Forms;
|
moel@345
|
2 |
|
moel@345
|
3 |
namespace Aga.Controls.Tree
|
moel@345
|
4 |
{
|
moel@345
|
5 |
partial class TreeViewAdv
|
moel@345
|
6 |
{
|
moel@345
|
7 |
private System.ComponentModel.IContainer components = null;
|
moel@345
|
8 |
|
moel@345
|
9 |
protected override void Dispose(bool disposing)
|
moel@345
|
10 |
{
|
moel@345
|
11 |
if (disposing && (components != null))
|
moel@345
|
12 |
{
|
moel@345
|
13 |
components.Dispose();
|
moel@345
|
14 |
if (_dragBitmap != null) _dragBitmap.Dispose();
|
moel@345
|
15 |
if (_dragTimer != null) _dragTimer.Dispose();
|
moel@345
|
16 |
if (_linePen != null) _linePen.Dispose();
|
moel@345
|
17 |
if (_markPen != null) _markPen.Dispose();
|
moel@345
|
18 |
}
|
moel@345
|
19 |
base.Dispose(disposing);
|
moel@345
|
20 |
}
|
moel@345
|
21 |
|
moel@345
|
22 |
#region Component Designer generated code
|
moel@345
|
23 |
private void InitializeComponent()
|
moel@345
|
24 |
{
|
moel@345
|
25 |
this.components = new System.ComponentModel.Container();
|
moel@345
|
26 |
this._vScrollBar = new System.Windows.Forms.VScrollBar();
|
moel@345
|
27 |
this._hScrollBar = new System.Windows.Forms.HScrollBar();
|
moel@345
|
28 |
this._errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
moel@345
|
29 |
((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
|
moel@345
|
30 |
this.SuspendLayout();
|
moel@345
|
31 |
//
|
moel@345
|
32 |
// _vScrollBar
|
moel@345
|
33 |
//
|
moel@345
|
34 |
this._vScrollBar.LargeChange = 1;
|
moel@345
|
35 |
this._vScrollBar.Location = new System.Drawing.Point(0, 0);
|
moel@345
|
36 |
this._vScrollBar.Maximum = 0;
|
moel@345
|
37 |
this._vScrollBar.Name = "_vScrollBar";
|
moel@345
|
38 |
this._vScrollBar.Size = new System.Drawing.Size(13, 80);
|
moel@345
|
39 |
this._vScrollBar.TabIndex = 1;
|
moel@345
|
40 |
this._vScrollBar.ValueChanged += new System.EventHandler(this._vScrollBar_ValueChanged);
|
moel@345
|
41 |
this._vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this._vScrollBar_Scroll);
|
moel@345
|
42 |
//
|
moel@345
|
43 |
// _hScrollBar
|
moel@345
|
44 |
//
|
moel@345
|
45 |
this._hScrollBar.LargeChange = 1;
|
moel@345
|
46 |
this._hScrollBar.Location = new System.Drawing.Point(0, 0);
|
moel@345
|
47 |
this._hScrollBar.Maximum = 0;
|
moel@345
|
48 |
this._hScrollBar.Name = "_hScrollBar";
|
moel@345
|
49 |
this._hScrollBar.Size = new System.Drawing.Size(80, 13);
|
moel@345
|
50 |
this._hScrollBar.TabIndex = 2;
|
moel@345
|
51 |
this._hScrollBar.ValueChanged += new System.EventHandler(this._hScrollBar_ValueChanged);
|
moel@345
|
52 |
this._hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this._hScrollBar_Scroll);
|
moel@345
|
53 |
//
|
moel@345
|
54 |
// TreeViewAdv
|
moel@345
|
55 |
//
|
moel@345
|
56 |
this.BackColor = System.Drawing.SystemColors.Window;
|
moel@345
|
57 |
this.Controls.Add(this._vScrollBar);
|
moel@345
|
58 |
this.Controls.Add(this._hScrollBar);
|
moel@345
|
59 |
((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
|
moel@345
|
60 |
this.ResumeLayout(false);
|
moel@345
|
61 |
|
moel@345
|
62 |
}
|
moel@345
|
63 |
#endregion
|
moel@345
|
64 |
|
moel@345
|
65 |
private VScrollBar _vScrollBar;
|
moel@345
|
66 |
private HScrollBar _hScrollBar;
|
moel@345
|
67 |
private ErrorProvider _errorProvider;
|
moel@345
|
68 |
}
|
moel@345
|
69 |
}
|