using System; using System.Windows; using System.Windows.Controls; namespace Compdfkit_Tools.DigitalSignature.AddCertificationControl { public partial class AddCertificationControl : UserControl { public event EventHandler ContinueEvent; public AddCertificationControl() { InitializeComponent(); } private void ContinueBtn_Click(object sender, RoutedEventArgs e) { ContinueEvent?.Invoke(this, EventArgs.Empty); } } }