From d1a7124ae5115898086a4fdae7b4921a2cae1d56 Mon Sep 17 00:00:00 2001 From: tcfshcrw <48719709+tcfshcrw@users.noreply.github.com> Date: Sun, 22 Sep 2024 07:28:39 +0800 Subject: [PATCH] add warning message to pairing --- SimHubPlugin/SettingsControlDemo.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SimHubPlugin/SettingsControlDemo.xaml.cs b/SimHubPlugin/SettingsControlDemo.xaml.cs index ceef7d8f..08e9c8da 100644 --- a/SimHubPlugin/SettingsControlDemo.xaml.cs +++ b/SimHubPlugin/SettingsControlDemo.xaml.cs @@ -6800,6 +6800,8 @@ unsafe private void btn_Pairing_Click(object sender, RoutedEventArgs e) TextBox_debugOutput.Text = errorMessage; } } + string MSG_tmp = "Please restart all pedals and bridge after pairing complete, related message will be shown in serial monitor."; + System.Windows.MessageBox.Show(MSG_tmp, "Pairing", MessageBoxButton.OK, MessageBoxImage.Warning); }