AddCertificationControl.xaml.cs 510 B

1234567891011121314151617181920
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. namespace Compdfkit_Tools.DigitalSignature.AddCertificationControl
  5. {
  6. public partial class AddCertificationControl : UserControl
  7. {
  8. public event EventHandler ContinueEvent;
  9. public AddCertificationControl()
  10. {
  11. InitializeComponent();
  12. }
  13. private void ContinueBtn_Click(object sender, RoutedEventArgs e)
  14. {
  15. ContinueEvent?.Invoke(this, EventArgs.Empty);
  16. }
  17. }
  18. }