Hello,
the ToolTip text "Start dragging in order to change items' position" is not translated in german culture.
OutlookBar_style.xaml:
...<ToolTipService.ToolTip> <TextBlock Text="Start dragging in order to change items' position" telerik:LocalizationManager.ResourceKey="OutlookBarHorizontalSplitter" /></ToolTipService.ToolTip>...
As workaround I tried to set the ToolTip-Text by setting the HorizontalSplitterStyle like this:
...<UserControl.Resources> <Style x:Name="OutlookBarHorizontalSplitter" TargetType="Thumb"> <Setter Property="ToolTip" Value="My localized Text"/> </Style></UserControl.Resources><Grid> <telerik:RadOutlookBar x:Name="MenuOutlookBar" HorizontalSplitterStyle="{DynamicResource OutlookBarHorizontalSplitter}">...Unfortuately after this the whole Style of the HorizontalSplitter is lost and the Tooltip is still default.
Please let me know if there is a solution for this issue.
Regards
Rainer

private void rtSummaryInfo_RowLoaded(object sender, RowLoadedEventArgs e)
{
TreeListViewRow
lobjTreeListViewRow = (e.Row as Telerik.Windows.Controls.TreeListView.TreeListViewRow);
SummaryData lobjSummaryData = (e.Row as Telerik.Windows.Controls.TreeListView.TreeListViewRow).DataContext as SummaryData;
if (_lstExpandedNode.Contains(lobjSummaryData.NodeName))
{
lobjTreeListViewRow.IsExpanded =
true; // at this point, scrollviewer gets resets
}
}
I need to maintain the scroll position while expanding a node. Your help is appreciated.

According to their documentation “Link below” to set their date time picker to military time you have to create a new culture. We are using the culture below, as you can see from the screen shot it got it half way right but I think it would be better without the AM & PM after it.I attached a screen shot of the clock. We just want to remove the AM and PM.
CultureInfo cultureInfo = new CultureInfo("en-US");
cultureInfo.DateTimeFormat.ShortTimePattern = "H:mm";
cultureInfo.DateTimeFormat.LongTimePattern = "H:mm";
cultureInfo.DateTimeFormat.PMDesignator = "";
cultureInfo.DateTimeFormat.AMDesignator = "";
http://www.telerik.com/help/wpf/raddatetimepicker-features-formatting.html
<UserControl.Resources> <Helpers:RequiredValueStyleSelector x:Key="RequiredFieldStyleSelector" /> <Style TargetType="telerik:GridViewDataColumn"> <Setter Property="CellStyleSelector" Value="{StaticResource RequiredFieldStyleSelector}"/> </Style> </UserControl.Resources>
within our User Control
all is working as expected but if comment this in usercontrol out and put the same code
<Helpers:RequiredValueStyleSelector x:Key="RequiredFieldStyleSelector" /><Style TargetType="telerik:GridViewDataColumn"> <Setter Property="CellStyleSelector" Value="{StaticResource RequiredFieldStyleSelector}"/></Style>
into generic.xaml nothing happens
Any suggestions?
PS. in Helper.dll attributes look like
[assembly: ThemeInfo(
ResourceDictionaryLocation.None,
ResourceDictionaryLocation.SourceAssembly
)]