public MainWindow() { InitializeComponent(); Injection inj = new Injection(); processesBox.ItemsSource = inj.ListProccesses(); }
private void Button1_Click(object sender, RoutedEventArgs e) { Injection inj = new Injection(); string dll = textBox1.Text; string process = processesBox.SelectedItem.ToString(); inj.Inject(dll, process); }
private void refreshButton_Click(object sender, RoutedEventArgs e) { Injection inj = new Injection(); processesBox.ItemsSource = inj.ListProccesses(); }