RhSolutions-AddIn/Source/DataExport/RibbonController.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2021-12-05 16:55:36 +03:00
using System.Runtime.InteropServices;
using System.Windows.Forms;
using ExcelDna.Integration.CustomUI;
using Rehau.Sku.Assist;
2021-12-05 16:55:36 +03:00
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>";
}
public void OnButtonPressed(IRibbonControl control)
{
using (DataWriter dw = new DataWriter())
{
if (!dw.IsRangeValid())
{
MessageBox.Show("Выделен неверный диапазон!", "Неверный диапазон", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
else
{
dw.FillSkuAmountDict();
dw.FillPriceList();
}
}
}
2021-12-05 16:55:36 +03:00
}
}