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>
[DataServiceKey("FactTradeHeaderIdentifier")] public class TradeHeaderModel { [Key] [DataMember(IsRequired = true)] public int FactTradeHeaderIdentifier { get; set; } ... } /// <summary> /// There are no comments for Edft.Regulatory.Tracker.Service.Web.ApiModels.TradeHeaderModel in the schema. /// </summary> /// <KeyProperties> /// FactTradeHeaderIdentifier /// </KeyProperties> [global::System.Data.Services.Common.EntitySetAttribute("TradeHeaders")] [global::System.Data.Services.Common.DataServiceKeyAttribute("FactTradeHeaderIdentifier")] public partial class TradeHeaderModel : global::System.ComponentModel.INotifyPropertyChanged { /// <summary> /// There are no comments for Property FactTradeHeaderIdentifier in the schema. /// </summary> [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Services.Design", "1.0.0")] public int FactTradeHeaderIdentifier { get { return this._FactTradeHeaderIdentifier; } set { this.OnFactTradeHeaderIdentifierChanging(value); this._FactTradeHeaderIdentifier = value; this.OnFactTradeHeaderIdentifierChanged(); this.OnPropertyChanged("FactTradeHeaderIdentifier"); } } ...}var ds = new QueryableDataServiceCollectionView<TradeHeaderModel>(apiService.Container, apiService.Container.TradeHeaders);
I'd like to be able to use a masked input control to allow the user to enter a hexadecimal number representing a color value (ARGB) e.g. #FF445566 or 0x445566. Is there some way I can use one of the mask controls to achieve this?
Thanks
Pete

I know that it is possible to remove distinct values from the filters, as described in this article: https://docs.telerik.com/devtools/wpf/controls/radgridview/filtering/how-to/howto-display-all-distinct-values
But I want to add distinct values to the column filter. The use case would be when the user is creating a favorite for a specific set of filters. When the user comes back later to the list, it may not contain the values that the favorite filter had specified at that moment. But the user would like to still be able to see what the filters for the favorite looks like.
Is it possible to add distinct values to a column filter, without creating a custom filter editor?
