My requirement is, I need to develop a Wizard,
-
In the first page, I will display the list of Visual Studio Projects and user has to choose one project among them.
-
In the second page, I will display the list of project folders that are present inside the selected Project.
My Recipe arguments are ProjectName and ProjectFolder. In this case, I need to pass 1st argument(ie selected ProjectName) to 2nd page. How can I achieve this?
We can display list of values to the page using TypeConverter, that I know. And also we can use MonitorArgument to monitor one argument(A) from another argument(B). When the monitored value(A) changes , B's ValueProvider will be called.
I have to know, how to link Monitor Argument and TypeConverter?
Please help.
Thanks in advance, Rajesh.