Example #1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="previousPage">The previous page of the wizard to return to in case of a "PageBack" event.</param>
 public PageEncryption(WizardPage previousPage)
 {
     this.previousPage = previousPage;
     this.pageSearch   = new PageSearch(this);
     InitializeComponent();
     CheckBox_CheckedChanged(null, new EventArgs());
 }
Example #2
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="previousPage">The previous page of the wizard to return to in case of a "PageBack" event.</param>
 public PageEncryption(WizardPage previousPage)
 {
     this.previousPage = previousPage;
     this.pageSearch = new PageSearch(this);
     InitializeComponent();
     CheckBox_CheckedChanged(null, new EventArgs());
 }
Example #3
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="previousPage">The previous page of the wizard to return to in case of a "PageBack" event.</param>
 public PageFragment(WizardPage previousPage)
 {
     this.previousPage = previousPage;
     this.pageSearch = new PageSearch(this);
     InitializeComponent();
     hexMatch.ByteProvider = matchByteProvider;
     matchByteProvider.Changed += matchByteProvider_Changed;
 }
Example #4
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="previousPage">The previous page of the wizard to return to in case of a "PageBack" event.</param>
 public PageFragment(WizardPage previousPage)
 {
     this.previousPage = previousPage;
     this.pageSearch   = new PageSearch(this);
     InitializeComponent();
     hexMatch.ByteProvider      = matchByteProvider;
     matchByteProvider.Changed += matchByteProvider_Changed;
 }