initializeWidgets() 정적인 개인적인 메소드

static private initializeWidgets ( ) : void
리턴 void
예제 #1
0
    //bool reallyShow
    //we create this window on start of event_execute widget for having the graph execute values defined
    //but we don't want to show until user clicks on "properties" on the event_execute widget
    static public EventGraphConfigureWindow Show(bool reallyShow)
    {
        if (EventGraphConfigureWindowBox == null)
        {
            EventGraphConfigureWindowBox = new EventGraphConfigureWindow();
            EventGraphConfigureWindowBox.initializeWidgets();
        }

        if (reallyShow)
        {
            EventGraphConfigureWindowBox.event_graph_configure.Show();
        }
        else
        {
            EventGraphConfigureWindowBox.event_graph_configure.Hide();
        }

        return(EventGraphConfigureWindowBox);
    }
    //bool reallyShow
    //we create this window on start of event_execute widget for having the graph execute values defined
    //but we don't want to show until user clicks on "properties" on the event_execute widget
    public static EventGraphConfigureWindow Show(bool reallyShow)
    {
        if (EventGraphConfigureWindowBox == null) {
            EventGraphConfigureWindowBox = new EventGraphConfigureWindow ();
            EventGraphConfigureWindowBox.initializeWidgets();
        }

        if(reallyShow)
            EventGraphConfigureWindowBox.event_graph_configure.Show ();
        else
            EventGraphConfigureWindowBox.event_graph_configure.Hide ();

        return EventGraphConfigureWindowBox;
    }