I am using the Fluent theme implicitly (noxaml). If I use a standard Window as my main window, it appears correctly and the controls are properly themed.
However, if I change the main window to use RadWindow (and make the appropriate change to override OnStartup in App.xaml), at runtime the window does not appear.
I'm thinking that it may be that the RadWindow is rendering before the styling has been loaded. The RadWindow does render correctly in the designer.
Any thoughts on this?


<telerik:RadDateTimePicker> <telerik:RadDateTimePicker.CalendarStyle> <Style TargetType="{x:Type telerik:RadCalendar}"> <Setter Property="DayTemplateSelector" Value="{StaticResource CalendarCountTask}"/> </Style> </telerik:RadDateTimePicker.CalendarStyle></telerik:RadDateTimePicker><a:CustomTemplateSelector x:Key="CalendarCountTask"> <a:CustomTemplateSelector.DefaultTemplate> <DataTemplate> <TextBlock Text="{Binding Text}"/> </DataTemplate> </a:CustomTemplateSelector.DefaultTemplate> <a:CustomTemplateSelector.CustomTemplate> <DataTemplate> <TextBlock Text="{Binding Text}" Foreground="RoyalBlue"/> </DataTemplate> </a:CustomTemplateSelector.CustomTemplate></a:CustomTemplateSelector
public class CustomTemplateSelector : DataTemplateSelector
{
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
CalendarButtonContent content = item as CalendarButtonContent;
foreach (KeyValuePair<DateTime, short> oneDay in winDebtorInfo.TaskCountList)
{
if (oneDay.Key == content.Date)
{
content.Text += "(" + oneDay.Value + ")";
return CustomTemplate;
}
}
return DefaultTemplate;
}
public DataTemplate DefaultTemplate
{
get;
set;
}
public DataTemplate CustomTemplate
{
get;
set;
}
}
>
Hi there,
I'm trying to display a range series that is defined by a collection and a gap.
The ObservableCollection is defining the upper limit. The lower limit is defined by the upper limit minus the gap.
For this display I want to use a value converter that returns the lower limit for each upper limit.
<telerik:RadCartesianChart> <telerik:RadCartesianChart.HorizontalAxis> <telerik:CategoricalAxis /> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis/> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.Series> <telerik:RangeSeries ItemsSource="{Binding Path=SensorParameter.Range_UpperLimit}" HighBinding="Range_UpperLimit" CategoryBinding="RPM"> <telerik:RangeSeries.LowBinding> <MultiBinding Converter="{StaticResource ConvertOKLowValue}"> <Binding Path="Range_UpperLimit" /> <Binding Path="Range_Gap" /> </MultiBinding> </telerik:RangeSeries.LowBinding> </telerik:RangeSeries> </telerik:RadCartesianChart.Series></telerik:RadCartesianChart>
The SensorParameter struct looks like this:
01.public class RPM_Range : ObservableObject02.{03. public float Range_Gap { get; set; }04. public ObservableCollection<Range_Limit> Range_UpperLimit { get; set; }05.}06. 07.public class Range_Limit: ObservableObject08.{09. public float RPM10. {11. get; set;12. }13. 14. public float OK_Range_UpperLimit15. {16. get; set;17. }18.}
The value converter is implemented like this:
01.public class RangeSeriesLowConverter : IMultiValueConverter02.{03. public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)04. {05. double? _RangeUpperLimit = values[0] as double?;06. double? _RangeGap = values[1] as double?;07. if (_RangeUpperLimit - _RangeGap < 0)08. return 0;09. return _RangeUpperLimit - _RangeGap;10. }11. 12. public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)13. {14. throw new NotImplementedException();15. }16.}
UpperLimit binds correctly. But I'm not getting the binding to the lower limit correctly. While debugging the value converter is called, but the arguments are not passed correctly.
Is there a restriction using value converters for the low binding?
Thanks in advance for your help.
Kindly
Philipp

I reproduced the "First Look" example program code in "NotifyIcon" in the "NotifyIcon" in "WPF Controls Examples" program in a project created on a personal computer.
It is executed.
However, the popup does not appear when the button is pressed.
If you write the code using the "NotifyIcon" introduced on the "Telerik UI" site, the results are the same.
It runs, but no popup appears.
Simply submit the code you wrote below.
Can you tell me what the problem is?
MainWindow.xaml.cs
private void OnShowNotification(object sender, RoutedEventArgs e)
{
this.icon.ShowBalloonTip();
}
MainWindow.xaml
Button Content="Show notification" Click="OnShowNotification" />
<telerik:RadNotifyIcon
x:Name="icon"
BalloonText="Balloon Text"
BalloonTitle="Balloon Title"
TrayIconSource="black.ico"
BalloonIconSource="black.ico">
</telerik:RadNotifyIcon>

Hello,
In the Windows Explorer, you can change the view using Ctrl+Mouse Wheel.
Your file dialogs should do the same.

Hello,
The following resources are wrong in French:
Note for English:
It's also strange that the FileDialogs_InvalidOrMissingExtension resource says something completely different: "If you change a file name extension, the file might become unusable". Some thing for the FileDialogs_InvalidExtensionConfirmation resource.

Hello,
In the Windows Explorer, it is possible to use the Alt+Left keyboard shortcut for Back and the Alt+Right shortcut for Forward.
Your file dialogs should do the same.

Thoughts on what I'm doing wrong here? If I collapse a ListBoxItem, why does the RadListBox control on partially collapse it? It still has a height of a couple of pixels when the bound property for visiblity is set to Visibility.Collapsed.
<telerik:RadListBox Name="MainListControl" Grid.Row="3" VerticalAlignment="Stretch" VerticalContentAlignment="Stretch" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" Background="White" Margin="0,0,0,0" ItemsSource="{Binding Path=HumanResources,Mode=TwoWay}" > <telerik:RadListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/> </ItemsPanelTemplate> </telerik:RadListBox.ItemsPanel> <telerik:RadListBox.ItemTemplate> <DataTemplate> <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Visibility="{Binding Path=IsVisible, Mode=TwoWay,Converter={StaticResource localVisibilityConverter}}" > <Grid.RowDefinitions> <RowDefinition /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <StackPanel Name="ButtonPanel" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="3,3,3,3"> <telerik:RadButton x:Name="EditButton" Margin="3,3,3,3" Click="Edit_Click" Tag="{Binding Path=HumanResourceID}" Content="{Binding Edit, Source={StaticResource GeneralStrings}}" /> </StackPanel> <TextBlock Grid.Column="1" x:Name="expanderCaption" HorizontalAlignment="Stretch" VerticalAlignment="Center" Text="{Binding Path=Description}" Margin="3,3,3,3" /> </Grid> </DataTemplate> </telerik:RadListBox.ItemTemplate> </telerik:RadListBox>