|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Tools.Ribbon;
using System.Diagnostics;
namespace vsto易lesson1
{
public partial class Ribbon1
{
private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
{
}
private void button1_Click(object sender, RibbonControlEventArgs e)
{
ProcessStartInfo info = new ProcessStartInfo("notepad");
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);
}
}
}
|
|