private void button_recname_Click(object sender, RoutedEventArgs e) { if (comboBox_recname.SelectedItem != null) { string name = comboBox_recname.SelectedItem as string; string filePath = SettingPath.ModulePath + "\\RecName\\" + name; RecNamePluginClass plugin = new RecNamePluginClass(); HwndSource hwnd = (HwndSource)HwndSource.FromVisual(this); plugin.Setting(filePath, hwnd.Handle); } }