SVN r1230
SVN-Revision: r1230
This commit is contained in:
@@ -196,4 +196,34 @@ namespace Lskj.Control
|
||||
MessageUtil.Show(ResourceKeys.QQTip);
|
||||
return;
|
||||
}
|
||||
P
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 背景颜色
|
||||
/// </summary>
|
||||
/// <value>The color of the required label.</value>
|
||||
public override Color BackgroundColor
|
||||
{
|
||||
get
|
||||
{
|
||||
return TextEdit.Properties.Appearance.BackColor;
|
||||
}
|
||||
set
|
||||
{
|
||||
TextEdit.Properties.Appearance.BackColor = value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user