mirror of
https://github.com/colosso/Signature-Manager.git
synced 2026-07-15 10:14:54 +02:00
26 lines
526 B
C#
26 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.Office.Tools.Ribbon;
|
|
|
|
namespace SignatureManager
|
|
{
|
|
public partial class AddinRibbon
|
|
{
|
|
private void AddinRibbon_Load(object sender, RibbonUIEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void but_settings_Click(object sender, RibbonControlEventArgs e)
|
|
{
|
|
|
|
|
|
SettingsForm form = new SettingsForm();
|
|
|
|
form.ShowDialog();
|
|
}
|
|
}
|
|
}
|