Creating wizards in C#

  • Thread starter Thread starter Ashutosh Bhawasinka
  • Start date Start date
A

Ashutosh Bhawasinka

Hi,
Is there way in C# to make/create a wizard of forms (or property tabs if
view changes) like it's done in Visual C++ using Property sheets &
Property pages??

The only way I can think of something similar is to place the controls
on a user control and then place it on the form when required. Is there
any better way to do this?

I need the same level of control/flexibility as it's there in Visual C++ :)

Regards,
Ashutosh
 
Ashutosh said:
Hi,
Is there way in C# to make/create a wizard of forms (or property tabs
if view changes) like it's done in Visual C++ using Property sheets &
Property pages??

The only way I can think of something similar is to place the controls
on a user control and then place it on the form when required. Is
there any better way to do this?

I need the same level of control/flexibility as it's there in Visual
C++ :)

For some reason the Winforms Tab Control doesn't do what you're after?

http://msdn.microsoft.com/en-us/library/system.windows.forms.tabcontrol.aspx

-cd
 
Ashutosh Bhawasinka a écrit :
Hi,
Is there way in C# to make/create a wizard of forms (or property tabs if view
changes) like it's done in Visual C++ using Property sheets & Property
pages??

The only way I can think of something similar is to place the controls on a
user control and then place it on the form when required. Is there any better
way to do this?

I need the same level of control/flexibility as it's there in Visual C++ :)

Regards,
Ashutosh

http://www.codeproject.com/KB/miscctrl/DesignTimeWizard.aspx
http://www.codeguru.com/csharp/.net/net_general/visualstudionetadd-ins/article.php/c6911/
http://www.differentpla.net/content/2005/02/wizard-csharp1
 
I wonder how tough it will be to create WPF wizards using those documents as
prototypes?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top