-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendarEventFromTextRibbon.Designer.cs
90 lines (82 loc) · 3.2 KB
/
CalendarEventFromTextRibbon.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
89
90
namespace CalendarEventFromText
{
partial class CalendarEventFromTextRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
public CalendarEventFromTextRibbon()
: 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.openEventerButton = this.Factory.CreateRibbonButton();
this.tab1.SuspendLayout();
this.group1.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.openEventerButton);
this.group1.Label = "TUEventer";
this.group1.Name = "group1";
//
// openEventerButton
//
this.openEventerButton.Description = "Open Eventer";
this.openEventerButton.Label = "Open Eventer";
this.openEventerButton.Name = "openEventerButton";
this.openEventerButton.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.openEventerButton_Click);
//
// CalendarEventFromTextRibbon
//
this.Name = "CalendarEventFromTextRibbon";
this.RibbonType = "Microsoft.Outlook.Explorer";
this.Tabs.Add(this.tab1);
this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.CalendarEventFromTextRibbon_Load);
this.tab1.ResumeLayout(false);
this.tab1.PerformLayout();
this.group1.ResumeLayout(false);
this.group1.PerformLayout();
}
#endregion
internal Microsoft.Office.Tools.Ribbon.RibbonTab tab1;
internal Microsoft.Office.Tools.Ribbon.RibbonGroup group1;
internal Microsoft.Office.Tools.Ribbon.RibbonButton openEventerButton;
}
partial class ThisRibbonCollection
{
internal CalendarEventFromTextRibbon CalendarEventFromTextRibbon
{
get { return this.GetRibbon<CalendarEventFromTextRibbon>(); }
}
}
}