public void ShowConfigPanel(ShowConfigPanelMessage action)
 {
     switch (action.ActivePanel)
     {
     case ConfigPanelType.Panel_LaplasSharp:
         LaplasSharpSetting.Show();
         LaplasSharpSetting.Float();
         break;
     }
 }
 public ProcessWindow()
 {
     InitializeComponent();
     Messenger.Default.Register <ShowConfigPanelMessage>(this, (action) => ShowConfigPanel(action));
     LaplasSharpSetting.Hide();
 }