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

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