This question is locked. New answers and comments are not allowed.
Hello,
Since your new release of Silverlight Controls RadControls_for_Silverlight4_2012_1_0430_DEV_hotfix.zip i've missing the property ParentSelector on RadListBoxItem.
I've tried to access the listbox from listboxitem. but parentselector is not longer aviable ...
please help me ...
thx
Since your new release of Silverlight Controls RadControls_for_Silverlight4_2012_1_0430_DEV_hotfix.zip i've missing the property ParentSelector on RadListBoxItem.
I've tried to access the listbox from listboxitem. but parentselector is not longer aviable ...
please help me ...
thx
Private
Sub
RadContextMenu_ItemClick(sender
As
System.
Object
, e
As
Telerik.Windows.RadRoutedEventArgs)
Dim
m
As
RadContextMenu =
DirectCast
(sender, RadContextMenu)
Dim
i
As
RadListBoxItem = m.GetClickedElement(Of RadListBoxItem)()
If
i IsNot
Nothing
Then
Dim
o
As
ObservableCollection(Of MapService.Service) = i.ParentSelector.ItemsSource
....
End
sub