Beispiel #1
0
        /// <summary>
        ///  Opens a LogInput Editor Dialog. Can change the times and the variable name.
        /// </summary>
        /// <param name="selected"> The unique variable name of the seleced List View item.</param>
        private void EditDialog(string selected)
        {
            LogInput       log = LogSystem.getLogInput(selected);
            LogInputDialog lid = new LogInputDialog(this, log);

            lid.Show();
        }
 /// <summary>
 ///  Opens a LogInput Editor Dialog. Can change the times and the variable name.
 /// </summary>
 /// <param name="selected"> The unique variable name of the seleced List View item.</param>
 private void EditDialog(string selected)
 {
     LogInput log = LogSystem.getLogInput(selected);
     LogInputDialog lid = new LogInputDialog(this, log);
     lid.Show();
 }