1 Star 5 Fork 1

风铃 / WordRegexAddIn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ThisAddIn.cs 932 Bytes
一键复制 编辑 原始数据 按行查看 历史
风铃 提交于 2021-06-18 17:32 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Word = Microsoft.Office.Interop.Word;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Word;
namespace WordRegexAddIn
{
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO 生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}
C#
1
https://gitee.com/fldx/WordRegexAddIn.git
git@gitee.com:fldx/WordRegexAddIn.git
fldx
WordRegexAddIn
WordRegexAddIn
master

搜索帮助