public InformationChangedEventArgs(InfoVal info, Dictionary <string, float> stats) : base(info) { this.aileron = stats["aileron"]; this.elevator = stats["elevator"]; this.rudder = stats["rudder"]; this.throttle = stats["throttle"]; this.altimeter = stats["altitude-ft"]; this.airSpeed = stats["airspeed-kt"]; this.orientation = stats["heading-deg"]; this.roll = stats["roll-deg"]; this.pitch = stats["pitch-deg"]; this.yaw = stats["side-slip-deg"]; }
public XMLFileUploadEventArgs(InfoVal info, List <string> categories) : base(info) { this.categories = categories; }
public TimeChangedEventArgs(InfoVal info, string newTime, int seconds) : base(info) { this.NewTime = newTime; this.Seconds = seconds; }
public PropertyChangedEventArgs(InfoVal info) { this.info = info; }
public CSVAnomaliesFileUploadEventArgs(InfoVal info, int length) : base(info) { this.length = length; }