1 Star 5 Fork 1

风铃 / WordRegexAddIn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
RegexRibbon.Designer.cs 9.03 KB
一键复制 编辑 原始数据 按行查看 历史

namespace WordRegexAddIn
{
partial class RegexRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
public RegexRibbon()
: base(Globals.Factory.GetRibbonFactory())
{
InitializeComponent();
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegexRibbon));
this.tabRegex = this.Factory.CreateRibbonTab();
this.group1 = this.Factory.CreateRibbonGroup();
this.box1 = this.Factory.CreateRibbonBox();
this.editRegex = this.Factory.CreateRibbonEditBox();
this.btnFind = this.Factory.CreateRibbonButton();
this.btnFindPrev = this.Factory.CreateRibbonButton();
this.box2 = this.Factory.CreateRibbonBox();
this.editReplace = this.Factory.CreateRibbonEditBox();
this.btnReplace = this.Factory.CreateRibbonButton();
this.btnReplaceAll = this.Factory.CreateRibbonButton();
this.box3 = this.Factory.CreateRibbonBox();
this.checkIgnoreCase = this.Factory.CreateRibbonCheckBox();
this.group2 = this.Factory.CreateRibbonGroup();
this.btnHelp = this.Factory.CreateRibbonButton();
this.btnUpdate = this.Factory.CreateRibbonButton();
this.tabRegex.SuspendLayout();
this.group1.SuspendLayout();
this.box1.SuspendLayout();
this.box2.SuspendLayout();
this.box3.SuspendLayout();
this.group2.SuspendLayout();
this.SuspendLayout();
//
// tabRegex
//
this.tabRegex.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
this.tabRegex.Groups.Add(this.group1);
this.tabRegex.Groups.Add(this.group2);
this.tabRegex.Label = "正则表达式";
this.tabRegex.Name = "tabRegex";
//
// group1
//
this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
this.group1.Items.Add(this.box1);
this.group1.Items.Add(this.box2);
this.group1.Items.Add(this.box3);
this.group1.Label = "正则表达式";
this.group1.Name = "group1";
this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
//
// box1
//
this.box1.Items.Add(this.editRegex);
this.box1.Items.Add(this.btnFind);
this.box1.Items.Add(this.btnFindPrev);
this.box1.Name = "box1";
//
// editRegex
//
this.editRegex.Label = "正则";
this.editRegex.Name = "editRegex";
this.editRegex.Text = null;
//
// btnFind
//
this.btnFind.Label = "查找";
this.btnFind.Name = "btnFind";
this.btnFind.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnFind_Click);
//
// btnFindPrev
//
this.btnFindPrev.Label = "上一个";
this.btnFindPrev.Name = "btnFindPrev";
this.btnFindPrev.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnFindPrev_Click);
//
// box2
//
this.box2.Items.Add(this.editReplace);
this.box2.Items.Add(this.btnReplace);
this.box2.Items.Add(this.btnReplaceAll);
this.box2.Name = "box2";
//
// editReplace
//
this.editReplace.Label = "替换";
this.editReplace.Name = "editReplace";
this.editReplace.Text = null;
//
// btnReplace
//
this.btnReplace.Label = "替换";
this.btnReplace.Name = "btnReplace";
this.btnReplace.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnReplace_Click);
//
// btnReplaceAll
//
this.btnReplaceAll.Label = "全部替换";
this.btnReplaceAll.Name = "btnReplaceAll";
this.btnReplaceAll.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnReplaceAll_Click);
//
// box3
//
this.box3.Items.Add(this.checkIgnoreCase);
this.box3.Name = "box3";
//
// checkIgnoreCase
//
this.checkIgnoreCase.Label = "忽略大小写";
this.checkIgnoreCase.Name = "checkIgnoreCase";
this.checkIgnoreCase.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.checkIgnoreCase_Click);
//
// group2
//
this.group2.Items.Add(this.btnHelp);
this.group2.Items.Add(this.btnUpdate);
this.group2.Label = "帮助";
this.group2.Name = "group2";
//
// btnHelp
//
this.btnHelp.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image")));
this.btnHelp.Label = "帮助";
this.btnHelp.Name = "btnHelp";
this.btnHelp.ShowImage = true;
this.btnHelp.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnHelp_Click);
//
// btnUpdate
//
this.btnUpdate.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
this.btnUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnUpdate.Image")));
this.btnUpdate.Label = "更新";
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.ShowImage = true;
this.btnUpdate.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnUpdate_Click);
//
// RegexRibbon
//
this.Name = "RegexRibbon";
this.RibbonType = "Microsoft.Word.Document";
this.Tabs.Add(this.tabRegex);
this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.RegexRibbon_Load);
this.tabRegex.ResumeLayout(false);
this.tabRegex.PerformLayout();
this.group1.ResumeLayout(false);
this.group1.PerformLayout();
this.box1.ResumeLayout(false);
this.box1.PerformLayout();
this.box2.ResumeLayout(false);
this.box2.PerformLayout();
this.box3.ResumeLayout(false);
this.box3.PerformLayout();
this.group2.ResumeLayout(false);
this.group2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
internal Microsoft.Office.Tools.Ribbon.RibbonTab tabRegex;
internal Microsoft.Office.Tools.Ribbon.RibbonGroup group1;
internal Microsoft.Office.Tools.Ribbon.RibbonBox box1;
internal Microsoft.Office.Tools.Ribbon.RibbonEditBox editRegex;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnFind;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnFindPrev;
internal Microsoft.Office.Tools.Ribbon.RibbonBox box2;
internal Microsoft.Office.Tools.Ribbon.RibbonEditBox editReplace;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnReplace;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnReplaceAll;
internal Microsoft.Office.Tools.Ribbon.RibbonBox box3;
internal Microsoft.Office.Tools.Ribbon.RibbonCheckBox checkIgnoreCase;
internal Microsoft.Office.Tools.Ribbon.RibbonGroup group2;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnHelp;
internal Microsoft.Office.Tools.Ribbon.RibbonButton btnUpdate;
}
partial class ThisRibbonCollection
{
internal RegexRibbon RegexRibbon
{
get { return this.GetRibbon<RegexRibbon>(); }
}
}
}
C#
1
https://gitee.com/fldx/WordRegexAddIn.git
git@gitee.com:fldx/WordRegexAddIn.git
fldx
WordRegexAddIn
WordRegexAddIn
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891