Skip to content
| Marketplace
Sign in
Visual Studio>Controls>RuWizard (.NET Framework)
RuWizard (.NET Framework)

RuWizard (.NET Framework)

Klaus Ruttkowski

|
1,126 installs
| (1) | Free
A Wizard Toolbox Control
Download

This is a Control to insert Wizard.

The control is based on the following code

and was adapted by me and implemented as a template.

Here is the original note in the code

Please include it in your code

`#region Copyright ©2005, Cristi Potlog - All Rights Reserved /* ------------------------------------------------------------------- *

  •                        Cristi Potlog                             *
    
  •              Copyright ©2005 - All Rights reserved               *
    
  •                                                                  *
    
  • THIS SOURCE CODE IS PROVIDED "AS IS" WITH NO WARRANTIES OF ANY KIND, *
  • EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE *
  • WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR *
  • PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF DEALING, *
  • USAGE OR TRADE PRACTICE. *
  •                                                                  *
    
  • THIS COPYRIGHT NOTICE MAY NOT BE REMOVED FROM THIS FILE. *
  • ------------------------------------------------------------------- */ #endregion Copyright ©2005, Cristi Potlog - All Rights Reserved

// Klaus Ruttkowski has made several changes // and published the wizard control as a VSIX file (RuWizard) // in https://marketplace.visualstudio.com/`

Here is a sample code for using RuWizard

`using System.Diagnostics;

namespace TestRuWizard

{

// Create a CheckBox and a TextBox from different wizard pages.

// Change both midifiers from private to public.

public partial class Form1 : Form

{

    public bool StatusCheckbox { set; get; } = false;
    public string ContentTextbox { set; get; } = string.Empty;
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        frmWizard Wizard = new frmWizard();
        
        Wizard.ShowDialog();
        if (Wizard.DialogResult == DialogResult.OK)
        {

            StatusCheckbox = Wizard.checkBox1.Checked; // Set checkBox1.Midifiers = public
            ContentTextbox = Wizard.textBox1.Text;     // Set textBox1. Midifiers = public
            Debug.Print(StatusCheckbox.ToString());
            Debug.Print(ContentTextbox.ToString());
        }
        else
        {
            Debug.Print("Wizard Cancel");
        }
     }
}

} `

The Wizard Control

Bild_2022_01_07_13_41_53_370.png

Insert Wizard

Bild_2022_01_07_13_49_08_692.png

Bild_2022_01_07_13_49_16_201.png

Insert Pages

Bild_2022_01_07_13_49_54_384__1.png Bild_2022_01_07_13_50_36_929__1.png

Change Picture

Bild_2022_01_07_13_51_43_60__1.png Bild_2022_01_07_13_52_34_244__1.png Bild_2022_01_07_13_53_04_441__1.png Bild_2022_01_07_13_53_30_517__1.png

See Picture

Bild_2022_01_07_13_54_01_481__1.png Bild_2022_01_07_13_54_12_142__1.png

Insert User Controls

Bild_2022_01_07_13_54_31_877__1.png

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft