or
<ListBox x:Name="lbImageItems" |
dragDrop:RadDragAndDropManager.AllowDrop="True" |
BorderThickness="0" Background="Transparent" |
Style="{StaticResource DraggableListBox}" |
ItemContainerStyle="{StaticResource DraggableItemStyle}" |
ItemsSource="{Binding Path=DisplayItems}"> |
<ListBox.ItemsPanel> |
<ItemsPanelTemplate> |
<primitives:RadUniformGrid Rows="{Binding Path=ItemsRowsCount}" Columns="5" |
HorizontalAlignment="Left" VerticalAlignment="Top" /> |
</ItemsPanelTemplate> |
</ListBox.ItemsPanel> |
</ListBox> |
InputLanguageManager.InputLanguage
="he-IL" Language="he-IL"
FlowDirection
="RightToLeft"
2. setting the above properties of the relevant cell in the BeginningEdit event.
private
void RadGridView1_BeginningEdit(object sender, GridViewBeginningEditRoutedEventArgs e)
{
e.Cell.Language = System.Windows.Markup.
XmlLanguage.GetLanguage("he-IL");
e.Cell.FlowDirection =
FlowDirection.RightToLeft;
InputLanguageManager.SetInputLanguage(e.Cell, System.Globalization.CultureInfo.GetCultureInfoByIetfLanguageTag("he-IL"));
}
I'm using RadGridView version: 2009.2.911.35
Thanks.