示例#1
0
        internal void InitializePage(WizardPage previousPage)
        {
            var args = new WizardPageInitEventArgs(this, previousPage);

            OnInitialize(args);
        }
示例#2
0
 internal void InitializePage(WizardPage previousPage)
 {
     var args = new WizardPageInitEventArgs(this, previousPage);
     OnInitialize(args);
 }
示例#3
0
 /// <summary>
 /// Invoked just before showing the page.
 /// </summary>
 protected virtual void OnInitialize(WizardPageInitEventArgs args)
 {
     args.RoutedEvent = InitializeEvent;
     RaiseEvent(args);
 }
示例#4
0
 /// <summary>
 /// Invoked just before showing the page.
 /// </summary>
 protected virtual void OnInitialize(WizardPageInitEventArgs args)
 {
     args.RoutedEvent = InitializeEvent;
     RaiseEvent(args);
 }