forked from dbhurley/MauticOutlookPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMauticRibbon.Designer.cs
88 lines (80 loc) · 3.39 KB
/
MauticRibbon.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
namespace MauticOutlookPlugin {
partial class MauticRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase {
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
public MauticRibbon()
: 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.toggleButton1 = this.Factory.CreateRibbonToggleButton();
this.tab1.SuspendLayout();
this.group1.SuspendLayout();
this.SuspendLayout();
//
// tab1
//
this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
this.tab1.ControlId.OfficeId = "TabNewMailMessage";
this.tab1.Groups.Add(this.group1);
this.tab1.Label = "TabNewMailMessage";
this.tab1.Name = "tab1";
//
// group1
//
this.group1.Items.Add(this.toggleButton1);
this.group1.Label = "Mautic";
this.group1.Name = "group1";
//
// toggleButton1
//
this.toggleButton1.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
this.toggleButton1.Description = "Track email on Mautic";
this.toggleButton1.Image = global::MauticOutlookPlugin.Properties.Resources.mauticLogo;
this.toggleButton1.Label = "Track Email";
this.toggleButton1.Name = "toggleButton1";
this.toggleButton1.ShowImage = true;
this.toggleButton1.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.toggleButton1_Click);
//
// MauticRibbon
//
this.Name = "MauticRibbon";
this.RibbonType = "Microsoft.Outlook.Mail.Compose";
this.Tabs.Add(this.tab1);
this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_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.RibbonToggleButton toggleButton1;
}
partial class ThisRibbonCollection {
internal MauticRibbon Ribbon1 {
get { return this.GetRibbon<MauticRibbon>(); }
}
}
}