I am having three tree views and when on load the nodes should be selected programatically based on a textbox value.I am passing the textbox value as a paramater to my method.
The textbox value will be Fluid_1.HVY_GAS_MODE or Fluid_1.HVY_GAS_MODE.XXX
else if (displayMode == Mode.PARAMETERMODE)
{
if (prevSelectedTag.Count(x => x == '.') == 1)
{
int Index = prevSelectedTag.IndexOf('_');
////
}
else if (prevSelectedTag.Count(x => x == '.') == 2)
{
///
}
}
But how to make them selected when tree view is populated.
Below is the link to the image
http://postimg.org/image/52ybyi81n/[Go to the complete details ...