External/Aga.Controls/Tree/TreeViewAdv.Designer.cs
author StephaneLenclud
Sun, 03 Feb 2013 18:01:50 +0100
branchMiniDisplay
changeset 433 090259cfd699
permissions -rw-r--r--
Adding SoundGraphDisplay and SensorFrontView classes.
They were respectively based on SystemTray and SensorNotifyIcon.
SoundGraphDisplay is now able to load iMONDisplay.dll providing it lives on your PATH.
Adding option to sensor context menu for adding it into FrontView.
     1 using System.Windows.Forms;
     2 
     3 namespace Aga.Controls.Tree
     4 {
     5 	partial class TreeViewAdv
     6 	{
     7 		private System.ComponentModel.IContainer components = null;
     8 
     9 		protected override void Dispose(bool disposing)
    10 		{
    11 			if (disposing && (components != null))
    12 			{
    13 				components.Dispose();
    14 				if (_dragBitmap != null) _dragBitmap.Dispose();
    15 				if (_dragTimer != null) _dragTimer.Dispose();
    16 				if (_linePen != null) _linePen.Dispose();
    17 				if (_markPen != null) _markPen.Dispose();
    18 			}
    19 			base.Dispose(disposing);
    20 		}
    21 
    22 		#region Component Designer generated code
    23 		private void InitializeComponent()
    24 		{
    25 			this.components = new System.ComponentModel.Container();
    26 			this._vScrollBar = new System.Windows.Forms.VScrollBar();
    27 			this._hScrollBar = new System.Windows.Forms.HScrollBar();
    28 			this._errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
    29 			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
    30 			this.SuspendLayout();
    31 			// 
    32 			// _vScrollBar
    33 			// 
    34 			this._vScrollBar.LargeChange = 1;
    35 			this._vScrollBar.Location = new System.Drawing.Point(0, 0);
    36 			this._vScrollBar.Maximum = 0;
    37 			this._vScrollBar.Name = "_vScrollBar";
    38 			this._vScrollBar.Size = new System.Drawing.Size(13, 80);
    39 			this._vScrollBar.TabIndex = 1;
    40 			this._vScrollBar.ValueChanged += new System.EventHandler(this._vScrollBar_ValueChanged);
    41 			this._vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this._vScrollBar_Scroll);
    42 			// 
    43 			// _hScrollBar
    44 			// 
    45 			this._hScrollBar.LargeChange = 1;
    46 			this._hScrollBar.Location = new System.Drawing.Point(0, 0);
    47 			this._hScrollBar.Maximum = 0;
    48 			this._hScrollBar.Name = "_hScrollBar";
    49 			this._hScrollBar.Size = new System.Drawing.Size(80, 13);
    50 			this._hScrollBar.TabIndex = 2;
    51 			this._hScrollBar.ValueChanged += new System.EventHandler(this._hScrollBar_ValueChanged);
    52 			this._hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this._hScrollBar_Scroll);
    53 			// 
    54 			// TreeViewAdv
    55 			// 
    56 			this.BackColor = System.Drawing.SystemColors.Window;
    57 			this.Controls.Add(this._vScrollBar);
    58 			this.Controls.Add(this._hScrollBar);
    59 			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
    60 			this.ResumeLayout(false);
    61 
    62 		}
    63 		#endregion
    64 
    65 		private VScrollBar _vScrollBar;
    66 		private HScrollBar _hScrollBar;
    67 		private ErrorProvider _errorProvider;
    68 	}
    69 }