This is a migrated thread and some comments may be shown as answers.

Catching item from RadDataBoundListBox

1 Answer 25 Views
DataBoundListBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Tonchi91
Top achievements
Rank 1
Tonchi91 asked on 12 Jul 2014, 10:19 PM
Hi everyone,

I am new to this forum and new to Telerik general, not only for Windows Phone.
I am using RadDataBoundListBox, and I still don't get it how to catch tapped item in the collection. I can't find any relative event for it.
Can anyone help me with this?

Thank you.

1 Answer, 1 is accepted

Sort by
0
Ivaylo Gergov
Telerik team
answered on 16 Jul 2014, 10:40 AM
Hi Antonio,

You can track the RadDataBoundListBox.SelectionChanged event and get the RadDataBoundListBox.SelectedItem like this: 
private void radDataBoundListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    var selectedItem = (sender as RadDataBoundListBox).SelectedItem;
}

Let me know if this helps.

Regards,
Ivaylo Gergov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
DataBoundListBox
Asked by
Tonchi91
Top achievements
Rank 1
Answers by
Ivaylo Gergov
Telerik team
Share this question
or