Code Search for Developers
 
 
  

CustomTreeNode.cs from MASE: Agile Software Engineering at Krugle


Show CustomTreeNode.cs syntax highlighted

using System;
using Whiteboard.MaseWS;

namespace TableWhiteboard_HCI_Intergration.HCI_Objs
{
	/// <summary>
	/// Summary description for CustomTreeNode.
	/// </summary>
	public class CustomTreeNode: System.Windows.Forms.TreeNode
	{
		public TabletVO tabVO;
		public CustomTreeNode(TabletVO tabVO) : base(tabVO.tabletProcess.id+":"+tabVO.tabletProcess.name)
		{
			this.tabVO = tabVO;
			if(tabVO.tabletProcess.processType == EStory.EStoryForm.USERSTORY)
			{
				base.ImageIndex = tabVO.tabletProcess.activityType;
				base.SelectedImageIndex = tabVO.tabletProcess.activityType;
			} 
			else if(tabVO.tabletProcess.processType == EStory.EStoryForm.ITERATION)
			{
				base.ImageIndex = TabletUI.iterationIndex;
				base.SelectedImageIndex = TabletUI.iterationIndex;
			}
			//
			// TODO: Add constructor logic here
			//
		}
		public void updateDisplayContent()
		{
			this.Text = tabVO.tabletProcess.id+":"+tabVO.tabletProcess.name;
			this.ImageIndex = tabVO.tabletProcess.activityType;
			this.SelectedImageIndex = tabVO.tabletProcess.activityType;
		}
	}
}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  ControlPoint.cs
  CustomTreeNode.cs
  CustomTreeView.cs
  Dashboard.cs
  Dashboard.resx
  EStoryForm.cs
  EStoryForm.resx
  IOSelectObject.cs
  InterfaceGrid.cs
  InterfaceObject.cs
  List.cs
  ListNode.cs
  LogFile.cs
  MenuForm.cs
  MenuForm.resx
  MoveAbleSpline.cs
  NonMoveAbleSpline.cs
  ObjectButton.cs
  Old_MoveAbleSpline.cs
  PenCalibration.cs
  PenCalibration.resx
  RNTObject.cs
  Spline.cs
  StartupScreen.cs
  StartupScreen.resx
  StorageButton.cs
  Study_Project.cs
  Study_Project.resx
  TabletUI.cs
  TabletUI.resx
  Workspace.cs
  Workspace.resx
  testCalibration.cs
  testCalibration.resx