/// <summary> /// Event for the history button click. Creates a HistoryForm form and shows it. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void ProximityHistoryButtonClicked(object sender, EventArgs e) { HistoryForm history = new HistoryForm(Core.SQL.MeasureType.Proximity); history.Show(); }
/// <summary> /// Event for the history button click. Creates a HistoryForm form and shows it. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void TemperatureHistoryButtonClicked(object sender, EventArgs e) { HistoryForm history = new HistoryForm(Core.SQL.MeasureType.Temperature); history.Show(); }