SessionLoadWindow.Show C# (CSharp) Method

Show() public static method

public static Show ( Gtk parent, WindowType, type ) : SessionLoadWindow,
parent Gtk
type WindowType,
return SessionLoadWindow,
    public static SessionLoadWindow Show(Gtk.Window parent, WindowType type)
    {
        if (SessionLoadWindowBox == null) {
            SessionLoadWindowBox = new SessionLoadWindow (parent, type);
        }
        SessionLoadWindowBox.recreateTreeView("loaded the dialog");

        SessionLoadWindowBox.session_load.Show ();

        return SessionLoadWindowBox;
    }