GenericWindow.ShowNow C# (CSharp) Method

ShowNow() public method

public ShowNow ( ) : void
return void
    public void ShowNow()
    {
        if(GenericWindowBox == null) {
            LogB.Error("at showNow GenericWindowBox is null!!");
        //	GenericWindowBox = new GenericWindow("");
        }

        GenericWindowBox.generic_window.Show ();
    }

Usage Example

    //used when click on "Select" button
    public void Show()
    {
        RepsActive = 0;
        RepsAll    = 0;

        activateCallbacks();

        genericWin.ShowNow();
    }
All Usage Examples Of GenericWindow::ShowNow