MasterInstaller.MainFlow.StartFlow C# (CSharp) Method

StartFlow() public method

public StartFlow ( ) : void
return void
        public void StartFlow()
        {
            var component = new IntroductionComponent();
            MainForm.SetComponent(component);

            component.NextClicked += delegate
            {
                GoToVisualStudioInfo();
            };

        }

Usage Example

Ejemplo n.º 1
0
        private void InstallForm_Load(object sender, EventArgs e)
        {
            Show();

            mainFlow          = new MainFlow();
            mainFlow.MainForm = this;

            mainFlow.StartFlow();
        }
All Usage Examples Of MasterInstaller.MainFlow::StartFlow