1234567891011121314151617181920 |
- 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);
- }
- }
- }
|