-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddUserRibbon.Designer.cs
96 lines (88 loc) · 3.56 KB
/
AddUserRibbon.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
91
92
93
94
95
96
namespace SendWebUsername
{
partial class AddUserRibbon : Microsoft.Office.Tools.Ribbon.RibbonBase
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
public AddUserRibbon()
: 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.addUserTab = this.Factory.CreateRibbonTab();
this.addUserGroup = this.Factory.CreateRibbonGroup();
this.addUserButton = this.Factory.CreateRibbonButton();
this.addUserTab.SuspendLayout();
this.addUserGroup.SuspendLayout();
this.SuspendLayout();
//
// addUserTab
//
this.addUserTab.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
this.addUserTab.Groups.Add(this.addUserGroup);
this.addUserTab.Label = "Add New User";
this.addUserTab.Name = "addUserTab";
//
// addUserGroup
//
this.addUserGroup.Items.Add(this.addUserButton);
this.addUserGroup.Label = "Add User Group";
this.addUserGroup.Name = "addUserGroup";
//
// addUserButton
//
this.addUserButton.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
this.addUserButton.Image = global::SendWebUsername.Properties.Resources.add_user;
this.addUserButton.ImageName = "Add User";
this.addUserButton.Label = "Add-User";
this.addUserButton.Name = "addUserButton";
this.addUserButton.ScreenTip = "Add New Website User";
this.addUserButton.ShowImage = true;
this.addUserButton.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.addUserButton_Click);
//
// AddUserRibbon
//
this.Name = "AddUserRibbon";
this.RibbonType = "Microsoft.Outlook.Explorer";
this.Tabs.Add(this.addUserTab);
this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.AddUserRibbon_Load);
this.addUserTab.ResumeLayout(false);
this.addUserTab.PerformLayout();
this.addUserGroup.ResumeLayout(false);
this.addUserGroup.PerformLayout();
this.ResumeLayout(false);
}
#endregion
internal Microsoft.Office.Tools.Ribbon.RibbonTab addUserTab;
internal Microsoft.Office.Tools.Ribbon.RibbonGroup addUserGroup;
internal Microsoft.Office.Tools.Ribbon.RibbonButton addUserButton;
}
partial class ThisRibbonCollection
{
internal AddUserRibbon AddUserRibbon
{
get { return this.GetRibbon<AddUserRibbon>(); }
}
}
}