External/Aga.Controls/Tree/NodeControls/NodeEventArgs.cs
author sl
Sun, 03 Feb 2013 18:01:50 +0100 (2013-02-03)
changeset 391 ca4c0e7ae75d
permissions -rw-r--r--
Converted project to VisualStudio 2012.
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;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 
     5 namespace Aga.Controls.Tree.NodeControls
     6 {
     7 	public class NodeEventArgs : EventArgs
     8 	{
     9 		private TreeNodeAdv _node;
    10 		public TreeNodeAdv Node
    11 		{
    12 			get { return _node; }
    13 		}
    14 
    15 		public NodeEventArgs(TreeNodeAdv node)
    16 		{
    17 			_node = node;
    18 		}
    19 	}
    20 }