Click here to Skip to main content
15,896,348 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
Hi ,
I want to Bind ListBox in windows phone .
i tried  possible code but didn't get success.
can any one help me ,what mistake i did in this code , Please check once

.Xaml Code

 <controls:PanoramaItem Header="item1">
                <Grid>
                    <ListBox x:Name="listBox1">
                        <ListBox.ItemTemplate >
                            <DataTemplate>
                                <StackPanel Width="400" Margin="20" >
                                    <Button x:Name="pic"  Tag="{Binding StoreID}">
                                        <Button.Template>
                                            <ControlTemplate>
                                                <TextBlock Text="{Binding Address1}" TextWrapping="Wrap" FontFamily="Arial" FontSize="28" Tag="{Binding StoreID}"/>
                                            </ControlTemplate>
                                        </Button.Template>
                                    </Button>
                                    <TextBlock Text="{Binding StoreID}" TextWrapping="Wrap" FontSize="24"/>
                                    <Image Source="{Binding source_icon}" Width="100" Height="60"/>
                                </StackPanel>
                            </DataTemplate>
                        </ListBox.ItemTemplate>
                    </ListBox>

                </Grid>
            </controls:PanoramaItem>



and .CS code


ObservableCollection<YSP_StoreInfoList> _StoInfoLst = new ObservableCollection<YSP_StoreInfoList>();
        void obb_getStoreInfoCompleted(object sender, LocalWalletServices.getStoreInfoCompletedEventArgs e)
        {
            if (e.Result != null)
            {
                listBox1.Items.Clear();

                for (int i = 0; i < e.Result.storeInfoList.storeInfoCount; i++)
                {
                    _StoInfoLst.Add(new YSP_StoreInfoList { Address1 = e.Result.storeInfoList.storeInfo[i].address1, StoreID = e.Result.storeInfoList.storeInfo[i].storeID });
                }
                listBox1.ItemsSource = _StoInfoLst;
                //e.Result.storeInfoList.storeInfo[].
                // daata insert
            }
            //throw new NotImplementedException();
        }



and Class i used

internal class YSP_StoreInfoList
    {
        public string Address1 { get; set; }

        public string StoreID { get; set; }

    }
Posted
Comments
Jeff Blankenburg 20-Feb-13 8:29am    
Looking at your code, I don't see anything obvious that would prevent it from working. When you say "didn't get success", what do you mean?

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