or
<telerikGrid:GridViewDataColumnWhich is using a converter to convert from one set of strings to another
Header="TDM Node"
UniqueName="L1Type"
DataMemberBinding="{Binding L1Type, Converter={StaticResource TDMNodeConverter}}"
/>
<ListBox ItemsSource="{Binding Data}"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <telerik:RadWrapPanel IsAnimated="True" Width="500" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Vertical"> <Image Source="{Binding DataString2}" Height="100" Width="100"></Image> <TextBlock Text="{Binding DataString3}"></TextBlock> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> </ListBox>
Am i missing something?
Thank you,
Mariya
Private Sub RadGridView1_RowValidating(ByVal sender As System.Object, ByVal e As Telerik.Windows.Controls.GridViewRowValidatingEventArgs)
e.IsValid =
False
End Sub