views:

44

answers:

0

I am writing a simple xaml in an attempt to give the user a choice in how they want to view information. One of the view choices I would like to use is the XamDataCard from infragistics. Here is the xaml code I have written so far:

        <User Control xmlns:igDP="http://infragistics.com/DataPresenter"&gt;
        <igDP:XamDataCards DataSource="{Binding Source={StaticResource Points}}" >
        <igDP:XamDataCards.FieldSettings>
            <igDP:FieldSettings AllowRecordFiltering="True"/>
        </igDP:XamDataCards.FieldSettings>
        </igDP:XamDataCards>
</UserControl>

I want to be able to change the layout of the datacards so that the information contained in the resource Points is diplayed in the standard datacard view with an image representing the point right-aligned, vertically centered, and in line with the text. How can I insert this image?