Esempio n. 1
0
        private void OnSourceProperties(object o, EventArgs args)
        {
            Source source = Actions.SourceActions.ActionSource;

            if (source is StationSource)
            {
                StationEditor editor = new StationEditor(lastfm, source as StationSource);
                editor.RunDialog();
            }
        }
 private void OnSourceProperties (object o, EventArgs args)
 {
     Source source = Actions.SourceActions.ActionSource;
     if (source is StationSource) {
         StationEditor editor = new StationEditor (lastfm, source as StationSource);
         editor.RunDialog ();
     }
 }
 private void OnAddStation (object sender, EventArgs args)
 {
     StationEditor ed = new StationEditor (lastfm);
     ed.RunDialog ();
 }
Esempio n. 4
0
        private void OnAddStation(object sender, EventArgs args)
        {
            StationEditor ed = new StationEditor(lastfm);

            ed.RunDialog();
        }