5

Is there a way to set the active view in a MultiView by ID rather than by index?

Something like this?

multiviewProgress.Views["step3"].SetToActiveView();
rlb.usa
  • 14,942
  • 16
  • 80
  • 128

1 Answers1

8

I believe you can just do something like this:

 myMultiView.SetActiveView(nameOfView);

where nameOfView is the ID given at design time. This example shows you how to do it.

Nick DeVore
  • 9,748
  • 3
  • 39
  • 41