Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Pages
ConfigDialog.xaml.cs
Go to the documentation of this file.
1using System.Windows;
2
4{
8 public partial class ConfigDialog
9 {
10 public ConfigDialog()
11 {
12 InitializeComponent();
13 }
14
15 public string ParamText { get => txtSomeParameter.Text;
16 set => txtSomeParameter.Text = value;
17 }
18
19 private void btnOK_Click(object sender, RoutedEventArgs e)
20 {
21 DialogResult = true;
22 }
23 }
24}
Enables you to add support for a Chromatography Data System (or similar) to Chronos....
Interaktionslogik für ConfigDialog.xaml.
void btnOK_Click(object sender, RoutedEventArgs e)