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

            editEventWindow.ShowDialog();
        }
Exemplo n.º 5
0
 protected virtual void on_delete_event(object o, DeleteEventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemplo n.º 6
0
 protected virtual void on_button_cancel_clicked(object o, EventArgs args)
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemplo n.º 7
0
 protected virtual void hideWindow()
 {
     EditEventWindowBox.edit_event.Hide();
     EditEventWindowBox = null;
 }
Exemplo n.º 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;
    }