Beispiel #1
0
        /// <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();
        }
Beispiel #2
0
        /// <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();
        }