Office中国论坛/Access中国论坛

标题: 【作业】01课-smrgh [打印本页]

作者: smrgh    时间: 2014-3-4 15:14
标题: 【作业】01课-smrgh
终于做完了,查了、抄了些代码,觉得太生硬了......体会了些VSTO开发的感觉,希望以后会更好!
作者: 紫电    时间: 2014-3-7 23:21
[attach]53398[/attach]
请上传源代码

作者: smrgh    时间: 2014-3-8 01:02
本帖最后由 smrgh 于 2014-3-8 01:10 编辑

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Tools.Ribbon;

namespace WordAddIn2
{
    public partial class Ribbon1
    {
        private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
        {

        }

        private void button1_Click(object sender, RibbonControlEventArgs e)
        {
            System.Diagnostics.Process p = new System.Diagnostics.Process();//创建进程
            p.StartInfo.FileName = "notepad.exe";//进程打开文件名
            p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;//隐藏窗口
            p.Start();//开始进程
        }

        private void button2_Click(object sender, RibbonControlEventArgs e)
        {
            if(checkBox1.Checked==true)
            {
                System.Diagnostics.Process.Start("http://www.office-cn.net");
            }
            else
                try
                    {
                        System.Diagnostics.Process.Start("yy://pd-[sid=91283328&subid=2175343697]");
                    }
                catch(System.Exception ex)
                    {
                        System.Diagnostics.Process.Start("http://yy.com/91283328/2175343697?from=");
                    }      
         }
    }
}


作者: 紫电    时间: 2014-3-8 09:39
符合题意。

else 两边最好加上括号,代码规范些






欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3