Files
2016-12-18 14:52:28 +01:00

94 lines
3.3 KiB
C#

namespace SignatureManager
{
partial class AddinRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
public AddinRibbon()
: base(Globals.Factory.GetRibbonFactory())
{
InitializeComponent();
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tab1 = this.Factory.CreateRibbonTab();
this.group1 = this.Factory.CreateRibbonGroup();
this.but_settings = this.Factory.CreateRibbonButton();
this.tab1.SuspendLayout();
this.group1.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.Items.Add(this.but_settings);
this.group1.Label = "Signature Manager";
this.group1.Name = "group1";
//
// but_settings
//
this.but_settings.Image = global::SignatureManager.Properties.Resources.settings;
this.but_settings.Label = "Settings";
this.but_settings.Name = "but_settings";
this.but_settings.ShowImage = true;
this.but_settings.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.but_settings_Click);
//
// AddinRibbon
//
this.Name = "AddinRibbon";
this.RibbonType = "Microsoft.Outlook.Mail.Compose";
this.Tabs.Add(this.tab1);
this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.AddinRibbon_Load);
this.tab1.ResumeLayout(false);
this.tab1.PerformLayout();
this.group1.ResumeLayout(false);
this.group1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
internal Microsoft.Office.Tools.Ribbon.RibbonTab tab1;
internal Microsoft.Office.Tools.Ribbon.RibbonGroup group1;
internal Microsoft.Office.Tools.Ribbon.RibbonButton but_settings;
}
partial class ThisRibbonCollection
{
internal AddinRibbon AddinRibbon
{
get { return this.GetRibbon<AddinRibbon>(); }
}
}
}