Hi
Im a beginner in WPF programming, coming from .NET 2.0 C#.
Im trying to make a horisontal stackpanel which should be filled with data from a table in a database. The problem is that i want it to display an image with some text from the table below and then stack those two items horisontally.
Here's some pseudo-code to display what i want todo:
<StackPanel Orientation="horisontal" ItemsSource="{Binding Path=myTable}">
<StackPanel>
<Image Source="User.png"/>
<Label HorizontalAlignment="Center" Content="{Binding Path=UserName}"></Label>
</StackPanel>
</StackPanel>
I simply cannot figure oout how todo this.