Visual C#で簡単なアプリを作成するのに問題があります。これは次のことを行います。
- しつこく特定のプロセスを探します。
- そのプロセスの実行が開始されたら、リソースをフォルダーにコピーします。
- プロセスが終了したら、別のリソースをそのフォルダーにコピーします。
タイマーとスレッドを使用してみましたが、成功しませんでした。ここではBackgroundWorkerが役立つと思いますが、ドキュメントはかなり不明確です。これが私の現在のコードです:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Resources;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace ResourceCopyApp
{
public partial class MainWindow : Window {
BackgroundWorker bw;
bool pcRunning = false;
public MainWindow() {
InitializeComponent();
bw = new BackgroundWorker();
bw.DoWork += new DoWorkEventHandler(Loop);
bw.RunWorkerAsync();
}
private void Window_Loaded(object sender, RoutedEventArgs e) {
cfgInstall.Text = Properties.Settings.Default.pcLocation;
cfgLag.Value = Properties.Settings.Default.lag;
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) {
Properties.Settings.Default.pcLocation = cfgInstall.Text;
Properties.Settings.Default.lag = (int)cfgLag.Value;
Properties.Settings.Default.Save();
}
public void Loop(object sender, DoWorkEventArgs e) {
pcRunning = false;
bool pcWasRunning = pcRunning;
if (pcRunning && !pcWasRunning) {
MessageBox.Show("Process found");
pcWasRunning = true;
Swap(true);
}
foreach (Process p in Process.GetProcesses()) {
if (p.ProcessName.Equals("Process")) {
pcRunning = true;
}
}
if (!pcRunning && pcWasRunning) {
MessageBox.Show("Process lost");
Swap(false);
}
}
public void Swap(bool v) {
byte[] file;
Thread.Sleep(new TimeSpan((long)cfgLag.Value));
if (v) {
file = Properties.Resources.NewRes;
} else {
file = Properties.Resources.BackupRes;
}
string path = cfgInstall.Text;
if (!cfgInstall.Text.EndsWith("/") && !cfgInstall.Text.EndsWith("\\")) {
path = cfgInstall.Text + "/test.txt";
}
File.WriteAllBytes(path, file);
}
}
}