WPF Grid Row/ Column adding Item Template
Hi,
I am working on a small project trying to get to know WPF. I created a XML File That contains information About my Item. I have a Description and Image as well. The following code displays what my grid looks like. <Border
BorderBrush="Black"
BorderThickness="4"
CornerRadius="5"
Margin="6"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="{Binding Mode=OneWay, XPath=ItemLookupCode}" Grid.Row="0"/>
<TextBlock Text="{Binding Mode=OneWay, XPath=Description}" Grid.Row="1"/>
<Image Source="{Binding Mode=OneWay, XPath=Image}" Grid.Row="2"/>
</Grid>
</Border>
My Question:
I want to add a column to my Grid. Currently my Items are displayed on top of each other and I want to display them both on top as well as side by side. That is why I want to add a column. I can't figure out how to get my Items to display correctly this way. Can someone please help me with this.
Thanks

