예제 #1
0
파일: XTree.cs 프로젝트: keithshort/HOPE
		protected virtual void RaiseCustomPopupCommand(NodeInstance ni, string tag)
		{
			if (CustomPopupCommand != null)
			{
				CustomPopupEventArgs args = new CustomPopupEventArgs(ni, tag);
				CustomPopupCommand(this, args);
			}
		}
예제 #2
0
파일: XTree.cs 프로젝트: keithshort/HOPE
		public CustomPopupEventArgs(NodeInstance node, string tag)
		{
			this.node = node;
			this.tag = tag;
		}