|
本帖最后由 faunus 于 2014-3-7 21:59 编辑
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Tools.Ribbon;
using System.Diagnostics;
namespace PowerPointAddIntest1
{
public partial class Ribbon1
{
private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
{
}
private void button1_Click(object sender, RibbonControlEventArgs e)
{
//方法1
// System.Diagnostics.Process.Start("notepad.exe"); 显式启动记事本;
//方法2
System.Diagnostics.Process Proc;
// 启动记事本
Proc = new System.Diagnostics.Process();
Proc.StartInfo.FileName = "notepad.exe";
Proc.StartInfo.UseShellExecute = false;
Proc.StartInfo.RedirectStandardInput = true;
Proc.StartInfo.RedirectStandardOutput = true;
Proc.Start();
}
private void button2_Click(object sender, RibbonControlEventArgs e)
{
if (chk_yy.Checked)
{
System.Diagnostics.Process.Start("yy://pd-[sid=91283328&subid=769333290]");
}
else
{
System.Diagnostics.Process.Start("http://yy.com/91283328/91283328?from=769333290");
}
}
}
}
C#从无知到能做这一点小程序,很高兴。
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
评分
-
查看全部评分
|