hytos / ID2.Manager / ExcelAddin / ID2ManagerImport / ID2Ribbon.Designer.cs @ db490bdf
이력 | 보기 | 이력해설 | 다운로드 (3.79 KB)
1 | 43ceb5b3 | taeseongkim | |
---|---|---|---|
2 | namespace ID2ManagerImport |
||
3 | { |
||
4 | partial class ID2Ribbon : Microsoft.Office.Tools.Ribbon.RibbonBase |
||
5 | { |
||
6 | /// <summary> |
||
7 | /// 필수 디자이너 변수입니다. |
||
8 | /// </summary> |
||
9 | private System.ComponentModel.IContainer components = null; |
||
10 | |||
11 | public ID2Ribbon() |
||
12 | : base(Globals.Factory.GetRibbonFactory()) |
||
13 | { |
||
14 | InitializeComponent(); |
||
15 | } |
||
16 | |||
17 | /// <summary> |
||
18 | /// 사용 중인 모든 리소스를 정리합니다. |
||
19 | /// </summary> |
||
20 | /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param> |
||
21 | protected override void Dispose(bool disposing) |
||
22 | { |
||
23 | if (disposing && (components != null)) |
||
24 | { |
||
25 | components.Dispose(); |
||
26 | } |
||
27 | base.Dispose(disposing); |
||
28 | } |
||
29 | |||
30 | #region 구성 요소 디자이너에서 생성한 코드 |
||
31 | |||
32 | /// <summary> |
||
33 | /// 디자이너 지원에 필요한 메서드입니다. |
||
34 | /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. |
||
35 | /// </summary> |
||
36 | private void InitializeComponent() |
||
37 | { |
||
38 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ID2Ribbon)); |
||
39 | this.tab1 = this.Factory.CreateRibbonTab(); |
||
40 | this.group1 = this.Factory.CreateRibbonGroup(); |
||
41 | this.btnSend = this.Factory.CreateRibbonButton(); |
||
42 | this.btLoad = this.Factory.CreateRibbonButton(); |
||
43 | this.tab1.SuspendLayout(); |
||
44 | this.group1.SuspendLayout(); |
||
45 | this.SuspendLayout(); |
||
46 | // |
||
47 | // tab1 |
||
48 | // |
||
49 | this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office; |
||
50 | this.tab1.Groups.Add(this.group1); |
||
51 | this.tab1.Label = "TabAddIns"; |
||
52 | this.tab1.Name = "tab1"; |
||
53 | // |
||
54 | // group1 |
||
55 | // |
||
56 | this.group1.Items.Add(this.btnSend); |
||
57 | this.group1.Items.Add(this.btLoad); |
||
58 | this.group1.Label = "ID2 Manager"; |
||
59 | this.group1.Name = "group1"; |
||
60 | // |
||
61 | // btnSend |
||
62 | // |
||
63 | this.btnSend.Image = ((System.Drawing.Image)(resources.GetObject("btnSend.Image"))); |
||
64 | this.btnSend.Label = "Send Data"; |
||
65 | this.btnSend.Name = "btnSend"; |
||
66 | this.btnSend.ShowImage = true; |
||
67 | this.btnSend.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnSend_Click); |
||
68 | // |
||
69 | // btLoad |
||
70 | // |
||
71 | this.btLoad.Label = "Get Data"; |
||
72 | this.btLoad.Name = "btLoad"; |
||
73 | this.btLoad.ShowImage = true; |
||
74 | this.btLoad.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btLoad_Click); |
||
75 | // |
||
76 | // ID2Ribbon |
||
77 | // |
||
78 | this.Name = "ID2Ribbon"; |
||
79 | this.RibbonType = "Microsoft.Excel.Workbook"; |
||
80 | this.Tabs.Add(this.tab1); |
||
81 | this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.ID2Ribbon_Load); |
||
82 | this.tab1.ResumeLayout(false); |
||
83 | this.tab1.PerformLayout(); |
||
84 | this.group1.ResumeLayout(false); |
||
85 | this.group1.PerformLayout(); |
||
86 | this.ResumeLayout(false); |
||
87 | |||
88 | } |
||
89 | |||
90 | #endregion |
||
91 | |||
92 | internal Microsoft.Office.Tools.Ribbon.RibbonTab tab1; |
||
93 | internal Microsoft.Office.Tools.Ribbon.RibbonGroup group1; |
||
94 | internal Microsoft.Office.Tools.Ribbon.RibbonButton btnSend; |
||
95 | internal Microsoft.Office.Tools.Ribbon.RibbonButton btLoad; |
||
96 | } |
||
97 | |||
98 | partial class ThisRibbonCollection |
||
99 | { |
||
100 | internal ID2Ribbon ID2Ribbon |
||
101 | { |
||
102 | get { return this.GetRibbon<ID2Ribbon>(); } |
||
103 | } |
||
104 | } |
||
105 | } |