CmisSync.SetupWindow.ShowAll C# (CSharp) Method

ShowAll() public method

public ShowAll ( ) : void
return void
        new public void ShowAll() {
            if (this.buttons.Children.Length > 0) {
                Button default_button = (Button)this.buttons.Children[this.buttons.Children.Length - 1];

                default_button.CanDefault = true;
                this.Default = default_button;
            }

            base.ShowAll();
            base.Present();
        }