SVN r1211

SVN-Revision: r1211
This commit is contained in:
cyf
2026-06-18 01:43:59 +00:00
parent 253cb869bb
commit f6192b8086
59 changed files with 2910 additions and 657 deletions
+1 -19
View File
@@ -196,22 +196,4 @@ namespace Lskj.Control
MessageUtil.Show(ResourceKeys.QQTip);
return;
}
Process p = new Process();
ProcessStartInfo ps = new ProcessStartInfo();
string Url = string.Format(@"tencent://message/?Menu=yes&uin={0}", EditText);
ps.FileName = @"iexplore.exe";
ps.Arguments = Url;
ps.UseShellExecute = true;
ps.RedirectStandardInput = false;
p.StartInfo = ps;
p.Start();
}
catch (Exception ex)
{
XtraMessageBox.Show(ResourceKeys.OpenQQError);
}
}
}
}
P