Completed
Last Updated: 11 Jul 2022 08:54 by ADMIN
When SDK Browser try to download or connect to GitHub repo it is thrown an exception. 
Completed
Last Updated: 11 Feb 2019 13:07 by ADMIN
Setting StyleManager.Theme attached property is not respected by RadDiagramToolBox.
Completed
Last Updated: 11 Feb 2022 14:44 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)

To whom it may concern,

In our MVVM-project, we are using a derived implementation of the RadRibbonWindow to add some customized functions, for example to add EventHandlers firing when something changed in the view, for example language or culture setting changes from another window. With the EventToCommandBehavior binding, we would like to pass the fired custom event to our view model to execute an async command. Although the event is not shown for autocompletion, everything works fine during runtime, and the command is executed when the event was fired. Unfortunately, the VisualStudio XAML designer cannot bind the custom event handler for the EventToCommand Behavior tag and therefore shows an exception within the XAML code, and within the XAML designer. Because of that binding problem, we are unable to further use the designer to get a preview of our designed windows.

We tried to derive our window from the basic WPF window (System.Windows.Window) and simply add the custom event handler but it did not work, either. Is there any problem with our implementation, or with the EventToCommandBehavior leading to an exception during design time? I have attached a minimal working example. In the code, I have derived a customized window class from the basic WPF window (shows the same error as the RadRibbonWindow), and have added a new event handler. This window is used as main window and fires the custom event when the event OnContentRendered function is called. The view binds this event within XAML to a command of the view model. The command is implemented with our customized asynchronous command. The XAML designer throws the described exception (as shown in the provided picture) but when I debug the program, a break point set within the function called by the command is hit.

I have removed the package "Telerik.Windows.Controls.for.Wpf.Xaml.2021.3.1109" within the .zip-folder because the code would have exceeded the maximum file size.

Sincerely,

Matthias Jörg

Completed
Last Updated: 11 Mar 2019 06:46 by ADMIN
Two tabs are required to navigate between property fields in the following themes:
- Office2013
- VisualStudio2013
- Green
- Office2016(Touch)
- Material
- Fluent
- Crystal
Completed
Last Updated: 17 Apr 2019 10:43 by ADMIN

Steps to reproduce

  1. Click somewhere in the document to move the cursor
    • The cursor starts blinking in the exact location is was moved to after you clicked
  2. Move the cursor with the arrow keys on the keyboard
    • The first time the cursor blinks it moves slightly to the right of the position it was moved to by the arrow key

Unfortunately due to the other cursor jumping bug our users are extremely sensitive to anything that makes it appear like the cursor is not in the position they moved it to.

I attached a gif of this happening with the zoom set to 500% so it is easiest to see but it appears to be a problem at any zoom level 100% or higher.

Completed
Last Updated: 22 Mar 2019 12:59 by ADMIN
Release 2019.1.325 (03/25/2019)
Select file/fodler. Press F2 and rename it. Click Enter. File stays selected but pressing F2 does not enter edit mode again.
Completed
Last Updated: 04 Oct 2021 13:07 by ADMIN
Release LIB 2021.2.809 (9 Aug 2021)
The popup of a notify icon does not appear when the application is built against .Net Core or .Net 5.
Completed
Last Updated: 16 Oct 2019 05:59 by ADMIN
Release R3 2019 SP1
     When open the radCombobox's drop list,put the mouse in the  next to last item,
then scroll the mouse back and forth,then the mouseover mark disappear,just when move the mouse to
the other item ,the mouseover mark will appear.
Completed
Last Updated: 21 May 2021 06:39 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The Telerik.Windows.Themes.VisualStudio2019.for.Wpf.2021.2.511.nupkg package file contains two Telerik.Windows.Themes.VisualStudio2019.dll files for the .NET 5 platform. This doesn't allow the package to get installed on projects targeting .NET 5. 
Completed
Last Updated: 19 Mar 2021 10:56 by ADMIN

Issue : Currently the Free Trial / Download page states "Over 120 UI controls" yet the product pages states "over 140".

 

Obviously "Over 120" is technically correct, however, 140 is more accurate, sounds better & increases consistency across the site.

 

The same issue also applies to the "UI for WinForms" description and its respective product page.

 

https://www.telerik.com/download

https://www.telerik.com/products/wpf/overview.aspx

https://www.telerik.com/products/winforms.aspx

Completed
Last Updated: 05 Apr 2021 05:02 by ADMIN
Release LIB 2021.1.405 (5/04/2021)
Created by: Simon
Comments: 1
Category: UI for WPF
Type: Bug Report
0

We use a RadTileList as our main navigation component. Today we noticed that our app's memory consumption only ever increases when opening modules and never decreases when closing them. When tracing memory usage with DotMemory (using the Key retention paths feature), I noticed that the retention path to the leaked module viewmodels seems to be rooted in the RadTileList component (see the attached screen shot).

A few implementation details:

- We are wrapping our modules in a class called "OpenedModule" (as you might guess from the attached image)

- The RadTileList is databound to an ObservableCollection<OpenedModule> via its ItemsSource

- We do not use grouping

- Closing a module results in the module's "OpenedModule" instance being removed from the ObservableCollection

This is the xaml we use to instantiate the TileList:

<telerik:RadTileList 
    x:Name="NavigationRadTileList"
    ItemsSource="{Binding OpenedModules, Mode=OneWay}" 
    CanUserSelect="False"
    TilePlaceHolderSide="90"
    behaviors:DisableTileListRightClickBehavior.IsEnabled="True"
    ItemTemplate="{StaticResource NavigationTileListTemplate}">
    <telerik:RadTileList.Resources>
         <Style TargetType="{x:Type telerik:Tile}" BasedOn="{StaticResource NavigationTileStyle}" />
    </telerik:RadTileList.Resources>
</telerik:RadTileList>

 

Judging by the result from dotMemory, it looks like the TileGroup's children are somehow cached in an ordered list which is not updated when an item is removed?

 

Best Regards,

Simon Müller

Completed
Last Updated: 27 Jan 2021 15:47 by ADMIN
Release LIB 2021.1.201
If one sets a column directly to the grid's Column collection the Header cell of the previous one is not recycled and is left inside the header row.
Completed
Last Updated: 20 Jan 2021 09:46 by ADMIN
Release LIB 2020.3.1228 (12/28/2020)

When the FluentPalette.Palette.ScrollBarsMode property is set to Normal, the ScrollViewer scrollbars overlap the content area. This should not happen.

To resolve this, set the ThemeHelper.ScrollBarsMode attached property of the ScrollViewer controls using an implicit style.

<Window.Resources>
	<Style TargetType="ScrollViewer">
		<Setter Property="helpers:ThemeHelper.ScrollBarsMode" Value="{telerik:FluentResource ResourceKey=ScrollBarsMode}"/>
	</Style>
</Window.Resources>

Completed
Last Updated: 12 Jan 2021 14:17 by ADMIN
Release R1 2021
In the Windows8 theme, the DisabledOpacity of the palette is not respected by the check visual part.
4 5 6 7 8 9