-
Notifications
You must be signed in to change notification settings - Fork 221
ImageConverter
Jan Karger ツ ☀ edited this page Dec 18, 2019
·
3 revisions
The PackIcon image converters can be used to convert a PackIcon enumeration kind to a DrawingImage which can be used with an ImageSource.
PackIconBoxIconsKindToImageConverterPackIconEntypoKindToImageConverterPackIconEvaIconsKindToImageConverterPackIconFeatherIconsKindToImageConverterPackIconFontAwesomeKindToImageConverterPackIconIoniconsKindToImageConverterPackIconJamIconsKindToImageConverterPackIconMaterialDesignKindToImageConverterPackIconMaterialKindToImageConverterPackIconMaterialLightKindToImageConverterPackIconMicronsKindToImageConverterPackIconModernKindToImageConverterPackIconOcticonsKindToImageConverterPackIconPicolIconsKindToImageConverterPackIconRPGAwesomeKindToImageConverterPackIconSimpleIconsKindToImageConverterPackIconTypiconsKindToImageConverterPackIconUniconsKindToImageConverterPackIconWeatherIconsKindToImageConverterPackIconZondiconsKindToImageConverter
<StackPanel Orientation="Horizontal"> <StackPanel.Resources> <ObjectDataProvider x:Key="PackIconFontAwesomeKinds" MethodName="GetValues" ObjectType="{x:Type iconPacks:PackIconFontAwesomeKind}"> <ObjectDataProvider.MethodParameters> <x:Type TypeName="iconPacks:PackIconFontAwesomeKind" /> </ObjectDataProvider.MethodParameters> </ObjectDataProvider> </StackPanel.Resources> <ComboBox x:Name="PackIconFontAwesomeKinds" Width="200" ItemsSource="{Binding Source={StaticResource PackIconFontAwesomeKinds}}" VerticalAlignment="Center" /> <Image VerticalAlignment="Center" Width="72" Height="72" Margin="2" Source="{Binding ElementName=PackIconFontAwesomeKinds, Path=SelectedItem, Converter={iconPacks:PackIconFontAwesomeKindToImageConverter Brush=Crimson}}" /> </StackPanel>
2019年12月18日_13h10_51
The general (generic) PackIconKindToImageConverter can be used for all PackIcon enumeration kinds. This converter is only available with the MahApps.Metro.IconPacks NuGet package.
<Image VerticalAlignment="Center" Width="72" Height="72" Margin="2" Source="{Binding ElementName=PackIconFontAwesomeKinds, Path=SelectedItem, Converter={iconPacks:PackIconKindToImageConverter Brush=Crimson}}" />