RhSolutions-AddIn/Source/Ribbon/RibbonController.cs

57 lines
1.8 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;
2021-12-08 14:45:14 +03:00
using RehauSku.DataExport;
2021-12-05 16:55:36 +03:00
2021-12-08 14:45:14 +03:00
namespace RehauSku.Ribbon
2021-12-05 16:55:36 +03:00
{
[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='rau' label='REHAU'>
<group id='priceList' label='Прайс-лист'>
<button id='exportToPrice' label='Экспорт' size='large' imageMso='PivotExportToExcel' onAction='OnExportPressed'/>
</group>
<group id='rausettings' label='Настройки'>
<button id='set' label='Настройки' size='large' imageMso='CurrentViewSettings' onAction='OnSettingsPressed'/>
</group>
2021-12-05 16:55:36 +03:00
</tab>
</tabs>
</ribbon>
</customUI>";
}
public void OnExportPressed(IRibbonControl control)
{
2021-12-23 15:31:23 +03:00
using (ExportTool dw = new ExportTool())
{
if (!dw.IsRangeValid())
{
MessageBox.Show("Выделен неверный диапазон!",
"Неверный диапазон",
2021-12-10 13:56:28 +03:00
MessageBoxButtons.OK,
MessageBoxIcon.Information);
return;
}
else
{
2021-12-22 17:07:37 +03:00
dw.FillNewPriceList();
}
}
}
public void OnSettingsPressed(IRibbonControl control)
{
2021-12-22 17:07:37 +03:00
Form settingsForm = new Settings.SettingsForm();
settingsForm.Show();
}
2021-12-05 16:55:36 +03:00
}
}