我正在使用MVVM扩展程序为WPF使用AvalonWizard控件库。
我找不到通过XAML设置WizardPage的Icon属性的方法。
这是我的尝试:
<UserControl x:Class="ImportFoxPro.Views.StartPageView"
xmlns:aw="clr-namespace:AvalonWizard;assembly=AvalonWizard"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" d:DesignHeight="476" d:DesignWidth="720">
<UserControl.Resources>
<Style TargetType="aw:WizardPage">
<Setter Property="aw:Wizard97.Icon" Value="{StaticResource MyImageSource}"/>
</Style>
</UserControl.Resources>
<Grid>
</Grid>
它没有错误,但它没有解决我的问题。
非常感谢任何帮助。