Example #1
0
 protected virtual void on_button_close_clicked(object o, EventArgs args)
 {
     PersonShowAllEventsWindowBox.person_show_all_events.Hide();
     PersonShowAllEventsWindowBox = null;
 }
Example #2
0
 protected virtual void on_delete_event(object o, DeleteEventArgs args)
 {
     PersonShowAllEventsWindowBox.person_show_all_events.Hide();
     PersonShowAllEventsWindowBox = null;
 }
Example #3
0
    public static PersonShowAllEventsWindow Show(Gtk.Window parent, int sessionID, Person currentPerson)
    {
        if (PersonShowAllEventsWindowBox == null) {
            PersonShowAllEventsWindowBox = new PersonShowAllEventsWindow (parent, sessionID, currentPerson);
        }
        PersonShowAllEventsWindowBox.person_show_all_events.Show ();

        return PersonShowAllEventsWindowBox;
    }