senpost
6/22/2011 - 1:18 AM

IValueConverter MarkupExtension in XAML

IValueConverter MarkupExtension in XAML

<Window x:Class="FruitConverterApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:FruitConverterApp"
        Title="MainWindow" Height="113" Width="201">
    <Window.DataContext>
        <local:MainWindowViewModel />
    </Window.DataContext>

    <StackPanel>
        <Image Height="69" Width="98" Source="{Binding IsApple, Converter={local:FruitConverter}}" >           
        </Image>
    </StackPanel>
</Window>