Browse Source

Wizard: Made WizardPageType.Exterior the default PageType

pull/1645/head
brianlagunas_cp 15 years ago
parent
commit
24ded02642
  1. 2
      ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/Wizard/Implementation/WizardPage.cs

2
ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/Wizard/Implementation/WizardPage.cs

@ -121,7 +121,7 @@ namespace Microsoft.Windows.Controls
set { SetValue(NextPageProperty, value); }
}
public static readonly DependencyProperty PageTypeProperty = DependencyProperty.Register("PageType", typeof(WizardPageType), typeof(WizardPage), new UIPropertyMetadata(WizardPageType.Interior));
public static readonly DependencyProperty PageTypeProperty = DependencyProperty.Register("PageType", typeof(WizardPageType), typeof(WizardPage), new UIPropertyMetadata(WizardPageType.Exterior));
public WizardPageType PageType
{
get { return (WizardPageType)GetValue(PageTypeProperty); }

Loading…
Cancel
Save