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: 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!

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."

 

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.
Unplanned
Last Updated: 19 Jul 2020 08:50 by Laurentiu Stamat
Created by: Mi
Comments: 9
Category: UI for WPF
Type: Feature Request
12

As we now have support for Webcams with RadWebcam-Control how about supporting Twain? But not the old version, instead the platform independent newer Twain-Direct. There is already C# Source Code under MIT-License available: https://github.com/twain/twain-direct. I think this could be used in Xamarin and WinForms, even ASP.NET also...

Declined
Last Updated: 09 Jul 2020 13:33 by ADMIN
The standard fonts listed at http://docs.telerik.com/devtools/wpf/controls/radpdfprocessing/concepts/fonts#standard-fonts cannot be embedded in a document. Using one of them prevents the document from complying with PDF/A standard.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190042 
Please use the new item for commenting, voting and subscribing instead of this one.
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.

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,

 

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.

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.
Completed
Last Updated: 15 May 2020 05:58 by ADMIN
Release R2 2020
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for WPF
Type: Feature Request
11

			
Completed
Last Updated: 04 May 2020 07:17 by ADMIN
Release R2 2020
ADMIN
Created by: Telerik Admin
Comments: 5
Category: UI for WPF
Type: Feature Request
31
http://www.telerik.com/community/forums/silverlight/general-discussions/feature-request-callout-control.aspx
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>
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.

Completed
Last Updated: 03 Apr 2020 13:05 by ADMIN
Release R2 2020
NuGet: A wrong dependency is added when installing the SpreadsheetStreamingExport package.
Unplanned
Last Updated: 03 Apr 2020 12:11 by ADMIN

Hi All,

I would like to hide the mouse over background to TreeListViewRow, and now the solution that I know is to edit the template my self.

Is it possible to add custom value for MouseOverBackground, SelectedBackground like GridViewRowStyle?

 

Thanks in advance for you feedback.

Unplanned
Last Updated: 24 Mar 2020 15:26 by ADMIN
The image quality is changed when pasting an image. 
Declined
Last Updated: 05 Mar 2020 21:17 by ADMIN
Created by: wu
Comments: 2
Category: UI for WPF
Type: Bug Report
0
look the attachment,when move the float window over the top Compass,and just there is a document tab under the Compass,
the place preview will flash.
Completed
Last Updated: 14 Feb 2020 14:13 by ADMIN
Release R1 2020 SP1

In the Crystal theme the ScrollBars are narrow and expand their size when the mouse is over. Introduce property that sets the default appearance of ScrollViewer's ScrollBars, similar to the ScrollBarMode property for the Fluent theme, which has the following options for the ScrollBar size:

  • Auto - narrow & expands to normal size
  • Compact - always narrow
  • Normal - always normal size
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.