aboutsummaryrefslogtreecommitdiff
path: root/Source/DataWriter/RibbonController.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-12-06 19:49:10 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-12-06 19:49:10 +0300
commitfa195001bc1f90c28a08ac05aac0d47344e517a6 (patch)
treeb7b18e8bccbaed10e19bc986d78db7717ead4c74 /Source/DataWriter/RibbonController.cs
parentd47e5d5282e89d1fcc69bf3907aa459277fcc104 (diff)
Add DataWriter class
Diffstat (limited to 'Source/DataWriter/RibbonController.cs')
-rw-r--r--Source/DataWriter/RibbonController.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/Source/DataWriter/RibbonController.cs b/Source/DataWriter/RibbonController.cs
deleted file mode 100644
index a9eedb5..0000000
--- a/Source/DataWriter/RibbonController.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System.Runtime.InteropServices;
-using System.Windows.Forms;
-using ExcelDna.Integration.CustomUI;
-
-namespace Ribbon
-{
- [ComVisible(true)]
- public class RibbonController : ExcelRibbon
- {
- public override string GetCustomUI(string RibbonID)
- {
- return @"
- <customUI xmlns='http://schemas.microsoft.com/office/2006/01/customui'>
- <ribbon>
- <tabs>
- <tab id='tab1' label='REHAU'>
- <group id='group1' label='Прайс-лист'>
- <button id='button1' label='Экспорт' onAction='OnButtonPressed'/>
- </group >
- </tab>
- </tabs>
- </ribbon>
- </customUI>";
- }
- }
-}