Click here to Skip to main content
15,886,075 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<!--ContentPanel - place additional content here-->
     <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,11,12,0">
         <ListBox Height="584" HorizontalAlignment="Left" Margin="0,83,0,0" Name="listBox1" VerticalAlignment="Top" Width="450" >
             <ListBox.ItemTemplate>
                 <DataTemplate>
                     <Grid>
                         <StackPanel Orientation="Horizontal">


                             <TextBlock Text="{Binding Symbol}"/>
                             <TextBlock Text="-"/>
                             <TextBlock Text="{Binding StockName}"/>
                             <TextBlock Text="-"/>
                             <TextBlock Text="{Binding BuyPrice}"/>
                             <TextBlock Text="-"/>
                             <TextBlock Text="{Binding SellPrice}"/>
                             <TextBlock Text="-"/>
                             <TextBlock Text="{Binding Quantity}"/>
                         </StackPanel>
                     </Grid>
                 </DataTemplate>

             </ListBox.ItemTemplate>
         </ListBox>


     </Grid>
 </Grid>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900