mirror of
https://github.com/tenrok/Rfid-Credential-Provider.git
synced 2026-05-18 12:39:47 +03:00
19 lines
327 B
C#
19 lines
327 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace Wizard.UI
|
|
{
|
|
public class WizardPageEventArgs : CancelEventArgs
|
|
{
|
|
string _newPage = null;
|
|
|
|
public string NewPage
|
|
{
|
|
get { return _newPage; }
|
|
set { _newPage = value; }
|
|
}
|
|
}
|
|
|
|
public delegate void WizardPageEventHandler(object sender, WizardPageEventArgs e);
|
|
}
|