12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- namespace HTEXWordWps
- {
- partial class MarkRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- public MarkRibbon()
- : 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()
- {
- this.tab1 = this.Factory.CreateRibbonTab();
- this.group1 = this.Factory.CreateRibbonGroup();
- this.tab1.SuspendLayout();
- this.SuspendLayout();
- //
- // tab1
- //
- this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
- this.tab1.Groups.Add(this.group1);
- this.tab1.Label = "TabAddIns";
- this.tab1.Name = "tab1";
- //
- // group1
- //
- this.group1.Label = "group1";
- this.group1.Name = "group1";
- //
- // MarkRibbon
- //
- this.Name = "MarkRibbon";
- this.RibbonType = "Microsoft.Word.Document";
- this.Tabs.Add(this.tab1);
- this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.MarkRibbon_Load);
- this.tab1.ResumeLayout(false);
- this.tab1.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- internal Microsoft.Office.Tools.Ribbon.RibbonTab tab1;
- internal Microsoft.Office.Tools.Ribbon.RibbonGroup group1;
- }
- partial class ThisRibbonCollection
- {
- internal MarkRibbon MarkRibbon
- {
- get { return this.GetRibbon<MarkRibbon>(); }
- }
- }
- }
|