Exemple #1
0
 protected virtual void hideWindow()
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemple #2
0
 protected virtual void on_button_cancel_clicked(object o, EventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemple #3
0
 protected virtual void on_delete_event(object o, DeleteEventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
        private void EditEventButton_Click(object sender, RoutedEventArgs e)
        {
            Window editEventWindow = new EditEventWindow(this, SelectedEventID());

            editEventWindow.ShowDialog();
        }
Exemple #5
0
 protected virtual void on_delete_event(object o, DeleteEventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemple #6
0
 protected virtual void on_button_cancel_clicked(object o, EventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemple #7
0
 protected virtual void hideWindow()
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemple #8
0
    //run win have also metersSecondsPreferred
    public static EditEventWindow Show(Gtk.Window parent, Event myEvent, int pDN)
    {
        if (EditEventWindowBox == null) {
            EditEventWindowBox = new EditEventWindow (parent);
        }

        EditEventWindowBox.pDN = pDN;

        EditEventWindowBox.initializeValues();

        EditEventWindowBox.fillDialog (myEvent);

        EditEventWindowBox.edit_event.Show ();

        return EditEventWindowBox;
    }