Esempio n. 1
0
        public MainWindow()
        {
            InitializeComponent();
            Injection inj = new Injection();

            processesBox.ItemsSource = inj.ListProccesses();
        }
Esempio n. 2
0
        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);
        }
Esempio n. 3
0
        private void refreshButton_Click(object sender, RoutedEventArgs e)
        {
            Injection inj = new Injection();

            processesBox.ItemsSource = inj.ListProccesses();
        }