예제 #1
0
        private void btnViewOptions_Click(object sender, RoutedEventArgs e)
        {
            Window_VariableRegistryEditor options_window = new Window_VariableRegistryEditor();

            options_window.Title         = $"{Device.Device.GetDeviceName()} - Options";
            options_window.SizeToContent = SizeToContent.WidthAndHeight;
            options_window.VarRegistryEditor.RegisteredVariables = Device.Device.GetRegisteredVariables();

            options_window.ShowDialog();
        }
예제 #2
0
        private void btnViewOptions_Click(object sender, RoutedEventArgs e)
        {
            Window_VariableRegistryEditor options_window = new Window_VariableRegistryEditor();

            options_window.Title         = $"{Device.Device.GetDeviceName()} - Options";
            options_window.SizeToContent = SizeToContent.WidthAndHeight;
            options_window.VarRegistryEditor.RegisteredVariables = Device.Device.GetRegisteredVariables();
            options_window.Closing += (_sender, _eventArgs) =>
            {
                ConfigManager.Save(Global.Configuration);
            };

            options_window.ShowDialog();
        }