Ejemplo n.º 1
0
 private void OnInstrumentDeleted(object sender, InstrumentEventArgs args)
 {
     Gtk.Application.Invoke(delegate
     {
         RemoveInstrument(args.Instrument);
     });
 }
Ejemplo n.º 2
0
        public void Execute(string task)
        {
            var eventArgs = new InstrumentEventArgs {
                Task = task
            };

            Finished.Invoke(this, eventArgs);
        }
Ejemplo n.º 3
0
 private void InstrumentManager_InstrumentRemoved(InstrumentEventArgs args)
 {
     if (this.InvokeRequired)
     {
         // ISSUE: method pointer
         this.BeginInvoke((Delegate) new InstrumentEventHandler(this.InstrumentManager_InstrumentRemoved), new object[] { args });
     }
     else
     {
         this.RemoveInstrument(args.Instrument);
     }
 }
Ejemplo n.º 4
0
		private static void SQInstrumentManager_InstrumentRemoved(InstrumentEventArgs args)
		{
			OpenQuant.RemoveInstrument(args.Instrument);
		}
Ejemplo n.º 5
0
		private static void SQInstrumentManager_InstrumentAdded(InstrumentEventArgs args)
		{
			OpenQuant.AddInstrument(args.Instrument);
		}
Ejemplo n.º 6
0
 private static void SQInstrumentManager_InstrumentRemoved(InstrumentEventArgs args)
 {
     OpenQuant.RemoveInstrument(args.Instrument);
 }
Ejemplo n.º 7
0
 private static void SQInstrumentManager_InstrumentAdded(InstrumentEventArgs args)
 {
     OpenQuant.AddInstrument(args.Instrument);
 }