Completed
Last Updated: 18 Jan 2021 08:54 by ADMIN
Release R1 2021
Created by: Martin Ivanov
Comments: 1
Category: UI for WPF
Type: Feature Request
1
Currently the CRM application is created with .NET Framework. Port its source code to .NET Core.
Completed
Last Updated: 03 Sep 2020 10:19 by ADMIN
Release LIB 2020.2.907 (09/07/2020)
When the DirectX D3DImage reports its front buffer is available for drawing and that said image is not displayed inside the webcam control an exception is thrown.
Completed
Last Updated: 09 Oct 2020 14:09 by ADMIN
Release LIB 2020.3.1012
Created by: Martin Ivanov
Comments: 0
Category: UI for WPF
Type: Feature Request
1
Add a two-way inverted converter that converts between visibility and boolean. Passing a Visibility.Collapsed value should return True and Visibility.Visible should return False. Also, add nullable bool support in the ConvertBack method. This way if the bool property provides a null value, the ConvertBack method should return True. 
Completed
Last Updated: 24 Aug 2020 10:54 by ADMIN
Release LIB 2020.2.824

It would be really great if the autocomplete box could handle the page up/down key to skip multiple entries at once. As we have like 200 entries in the list it would be a great advancement for the users using the keyboard.

Already tried your example from the forum but it is not functional.

All the best!

Unplanned
Last Updated: 04 Aug 2020 19:25 by Julio Cesar
Created by: Julio Cesar
Comments: 1
Category: UI for WPF
Type: Feature Request
2
Providing similar to the traditional Windows Forms Multiple Document Interface (MDI) features.
Completed
Last Updated: 02 Oct 2020 07:21 by ADMIN
Release LIB 2020.3.912
Setting the AnimationManager.IsGlobalAnimationEnabled to false does not affect the animation of the toolbox expandable part.

WORKAROUND:
Extract the template of the toolbox control and set the duration of the DoubleAnimations inside the "showAnimation" and "hideAnimation" storyboards to zero.
Completed
Last Updated: 21 Aug 2020 04:58 by ADMIN
Release R3 2020

When creating a NetCore project with NoXaml binaries via Telerik VSExtenstions for WPF and the installation of UI for WPF suite is not on C drive the following error occurs: "Error occurred while restoring NuGet packages: The local source 'C:\Program Files (x86)\Progress\Telerik UI for WPF R2 2020\ToolboxNugetPackages\' doesn't exist."

 

Completed
Last Updated: 19 Jun 2020 09:58 by ADMIN
Release LIB 2020.2.622

When a RadGridView column is bound to a sub-property e.g. "Player.FirstName", one can cancel the edit operation while the value of the cell's editor is invalid and the original value is not restored.

Completed
Last Updated: 16 Feb 2022 14:03 by ADMIN
 Currently, the UpgradeApiAnalyzer tool relies on VS Build Tools 2015. Add support for .Net 4.7 and VS Build Tools 2019
Declined
Last Updated: 14 Jan 2022 08:57 by ADMIN
Created by: Sia
Comments: 1
Category: UI for WPF
Type: Bug Report
1
We distribute two types of themes solutions with our source code. The first one are: Themes.Sources.sln (for Silverlight), Themes.Sources_WPF.sln and Themes.Sources_NetCore.sln which are used to rebuild our themes. The second one are those without Source in their names, which are used to distribute the output files. Adding references there will remove the errors which appear.
Unplanned
Last Updated: 29 May 2020 13:00 by ADMIN
We can help our customers to achieve a different look of their applications by setting a custom palette.
Unplanned
Last Updated: 09 Jul 2020 11:46 by ADMIN
Created by: Valentin
Comments: 10
Category: UI for WPF
Type: Feature Request
5

It would be awesome if the user would be able to create folders for visual organization in tree views, tree list views and list views. These folders should not be actual items in the tree, but rather be a visual simplification for complex lists and trees.

Folder specific features:

  • Add, move, rename and delete folders
  • Add or move items to the folders (for example via drag&drop)
  • Move and delete folders with their content
  • Verification, if certain types are allowed in a folder
  • Sort the content of the folder

    View specific features

  • Switch between “folder view” and “folderless view”
  • Save and load structures, similar to the LayoutControl
  • Verification, if a folder is allowed to be moved to or created in certain areas
  • Possibility to manipulate the structure from the code

With this feature the user would find it easier to organize sometimes complex trees and lists into manageable folder structures, as the layout would be created by the user himself. The folders also make collective operations on items in them easier to handle, as the user can move or delete the folder with its content and does not need to select long lists of items for every operation. This would increase the usability of the trees and lists.

Won't Fix
Last Updated: 16 Sep 2020 11:25 by ADMIN

The check mark of the RadioButton is misaligned when DPI settings are set to a higher than the default value, e.g. 125%.

The problem can easily be reproduced using the Telerik UI for WPF Demo application:

Unplanned
Last Updated: 24 Apr 2020 05:21 by ADMIN

Exception when editing the template and showing the tooltip of the ValidationErrorElement 

Workaround:

Replace the validation element: 

<Grid x:Name="ValidationErrorElement" Visibility="Collapsed">
    <Grid.ToolTip>
        <ToolTip x:Name="PART_ToolTip" Placement="Right" DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}">
            <ToolTip.Template>
                <ControlTemplate TargetType="{x:Type ToolTip}">
                    <Grid x:Name="RootVisual" HorizontalAlignment="Right" Margin="5,0" Opacity="0" RenderTransformOrigin="0,0">
                        <Grid.RenderTransform>
                            <TranslateTransform X="-25" x:Name="xform"/>
                        </Grid.RenderTransform>
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="OpenStates">
                                <VisualStateGroup.Transitions>
                                    <VisualTransition From="{x:Null}" GeneratedDuration="0" GeneratedEasingFunction="{x:Null}" Storyboard="{x:Null}" To="{x:Null}"/>
                                    <VisualTransition From="{x:Null}" GeneratedDuration="0:0:0.2" GeneratedEasingFunction="{x:Null}" To="Open">
                                        <Storyboard>
                                            <DoubleAnimation Duration="0:0:0.2" To="0" Storyboard.TargetProperty="X" Storyboard.TargetName="xform">
                                                <DoubleAnimation.EasingFunction>
                                                    <BackEase Amplitude="0.3" EasingMode="EaseOut"/>
                                                </DoubleAnimation.EasingFunction>
                                            </DoubleAnimation>
                                            <DoubleAnimation Duration="0:0:0.2" To="1" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="RootVisual"/>
                                        </Storyboard>
                                    </VisualTransition>
                                </VisualStateGroup.Transitions>
                                <VisualState x:Name="Closed">
                                    <Storyboard>
                                        <DoubleAnimation Duration="0" To="0" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="RootVisual"/>
                                    </Storyboard>
                                </VisualState>
                                <VisualState x:Name="Open">
                                    <Storyboard>
                                        <DoubleAnimation Duration="0" To="0" Storyboard.TargetProperty="X" Storyboard.TargetName="xform"/>
                                        <DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="RootVisual"/>
                                    </Storyboard>
                                </VisualState>
                            </VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <Grid>
                            <Path Data="M4,0L0,4 4,8z" Fill="#FFDC000C" HorizontalAlignment="Left" Height="10" Stretch="None" VerticalAlignment="Top" Width="6"/>
                            <Border Background="#FFDC000C" Margin="4,0,0,0" Padding="1">
                                <TextBlock Foreground="White" MaxWidth="250" Margin="8,4" TextWrapping="Wrap" Text="{Binding ValidationErrors[0].ErrorContent}"/>
                            </Border>
                        </Grid>
                        <ContentControl/>
                    </Grid>
                </ControlTemplate>
            </ToolTip.Template>
        </ToolTip>
    </Grid.ToolTip>
    <Border Background="Transparent" HorizontalAlignment="Right" Height="9" VerticalAlignment="Top" Width="9"/>
    <Border BorderBrush="#FFDC000C" BorderThickness="1" CornerRadius="1"/>
    <Path Data="M0,2L5,2 5,7z" Fill="#FFDC000C" HorizontalAlignment="Right" Height="7" VerticalAlignment="Top" Width="7"/>
</Grid>
Completed
Last Updated: 31 Jan 2022 13:43 by ADMIN
The delay is observed when the project already references one of our WPF NuGet and you open the NuGet window to add more NuGets.
Completed
Last Updated: 31 May 2021 08:04 by ADMIN
Release LIB 2020.2.504 (05/04/2020)

When the StyleManager is applied to the control, the IsRippleEnabled property is not respected.


Unplanned
Last Updated: 24 Mar 2020 15:26 by ADMIN
The image quality is changed when pasting an image. 
Declined
Last Updated: 03 Jul 2020 07:30 by ADMIN
Created by: Olivier
Comments: 1
Category: UI for WPF
Type: Feature Request
2

Hello,

We want to integrate a web browser in a flyout pane in WPF to display html 5 pages. Moreover, we want to display some html contents in tooltips too.

The provided WebBrowser by WPF framework does not work well.

Consequently, the idea is to have a "htmlplaceholder" (as you provide in silverlight) which supports HTML 5 and could be based on chromium engine.

Thanks & regards,

 

Declined
Last Updated: 08 Apr 2020 06:54 by ADMIN
Created by: wu
Comments: 2
Category: UI for WPF
Type: Bug Report
0

Testing in the RadColorEditor control:
   looking the attachments,Select the two numbers on the left(the file "Select.png"),
then enter a number through the keyboard,just modified the number on the far left(the file "Input1.png").
But sometimes the two numbers that are selected are replaced,like the file "Input2.png".
Obviously the second case input experience is better!
Continuous restarts cause one of the two.

Unplanned
Last Updated: 12 Feb 2020 15:35 by ADMIN

The application can be ported to .NET Core, uploaded to the Windows store and potentially have its source code distributed.