- 作者:zhaozj
- 发表时间:2020-12-23 10:36
- 来源:未知
只有在STA线程上ShellExecute 才能确保工作无误。在Process的实现中,并没有考虑到这个问题,所以使用Process类运行ShellExecute可能会出错。如果你不能保证调用Process.Start的线程的ApartmentState,可以使用如下的代码来避免这个问题:
using System;
using System.Threading;
public class Foo {
public static void OpenUrl() {
System.Diagnostics.Process.Start(@"http://www.google.com");
}
public static void Main () {
ThreadStart openUrlDelegate = new ThreadStart(Foo.OpenUrl);
Thread myThread = new Thread(openUrlDelegate);
myThread.SetApartmentState(ApartmentState.STA);
myThread.Start();
myThread.Join();
}
}
在使用Process类来打开未知类型文件时,会得到错误代码为ERROR_NO_ASSOCIATION 的Win32Exception。
设置ProcessStartInfo中的ErrorDialog可以显示“Open With”对话框:
using System.Diagnostics;
class Test {
public static void Main () {
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "t.tt";
info.ErrorDialog = true;