Unplanned
Last Updated: 18 Dec 2017 13:14 by ADMIN
It seems that on some devices a touch with the Stylus doesn't fire the WPF native Touch events. Only the Stylus events will be fired. Because the TouchManager internally works only with the WPF Touch events, the manager's events are not fired.
Declined
Last Updated: 11 Dec 2017 11:35 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: UI for WPF
Type: Bug Report
0
When using Two-way binding and the RadListBoxSelectedItemsBehavior for RadListBox's SelectedItems, the items are not re-added to the Visual Tree after the theme is changed at runtime. 
Declined
Last Updated: 06 Dec 2017 01:35 by wu
Created by: wu
Comments: 2
Category: UI for WPF
Type: Bug Report
0
when only one data ,the Chart3D Bar drawing will exceed the floor,looking the attachments pls.
Declined
Last Updated: 04 Dec 2017 15:35 by ADMIN
Created by: kiruthika
Comments: 3
Category: UI for WPF
Type: Feature Request
1
css style like the background color for the pinned rows can be different from the rows in the grid to differentiate the rows
Declined
Last Updated: 02 Nov 2017 09:05 by ADMIN
CartesianCustomLineAnnotation should allow for rendering options (2D, Bitmap, default) to allow for a consistent visual appearance.
Declined
Last Updated: 27 Oct 2017 13:44 by ADMIN
Created by: Paul
Comments: 1
Category: UI for WPF
Type: Bug Report
0

			
Unplanned
Last Updated: 16 Oct 2017 07:34 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: UI for WPF
Type: Feature Request
3
It would be nice if the Telerik UI for WPF VSExtensions detected usage of UI for WPF in class libraries (e.g. a WPF UserControl Library)..

This would allow the Upgrade Wizard / configure Project wizards can also work on the class libraries, too.
Unplanned
Last Updated: 25 Sep 2017 06:51 by ADMIN
This is a MVVM helper that could be used to decrease the coupling between the view models.
Unplanned
Last Updated: 24 Aug 2017 12:31 by ADMIN
Created by: Rob
Comments: 1
Category: UI for WPF
Type: Bug Report
1
The event args for the RadDocking.ActivePaneChanged are named "ActivePangeChangedEventArgs" which I'm assuming is a typo for "ActivePaneChangedEventArgs".
Declined
Last Updated: 24 Aug 2017 08:54 by ADMIN
Hi support,
I've mixed RibbonWindow Sample and Prism with ReagionManager and RadDocking in this sample. When I try to dock a derived RadPane (e.g. OutputView or others) in center of the compass menu the derived RadPane Header is not shown as a tab in the split container. Only pure RadPane instances  (c.f. "_regionManager.RegisterViewWithRegion("DockingRegion", typeof(RadPane)); " in FileServicesModule class will dock in correct manner. 
Declined
Last Updated: 07 Aug 2017 06:35 by ADMIN
Created by: Richard
Comments: 3
Category: UI for WPF
Type: Feature Request
2
Please can you add xlsm file support to RadSpreadProcessing.
Unplanned
Last Updated: 03 Aug 2017 11:55 by Iva
Created by: Iva
Comments: 0
Category: UI for WPF
Type: Feature Request
7
Introduce support for AutoCad files in a fixed document viewer.
Declined
Last Updated: 03 Aug 2017 11:52 by ADMIN
Created by: Pierre
Comments: 1
Category: UI for WPF
Type: Feature Request
0
In addition to the great nuget packages, could we also get Nuget packages with symbols baked in?

https://docs.nuget.org/ndocs/create-packages/symbol-packages
Unplanned
Last Updated: 06 Jul 2017 12:34 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: UI for WPF
Type: Feature Request
1
Improve the support for async operations. Currently, if the db data context is shared between the collection and another consumer, issues could occur.
Declined
Last Updated: 13 Jun 2017 11:56 by ADMIN
Created by: Marco
Comments: 1
Category: UI for WPF
Type: Feature Request
0
When new product features are released it would be useful to show a short introduction for users.  View introjs.com to see a similar solution for web development
Declined
Last Updated: 07 Jun 2017 08:00 by ADMIN
Created by: Matthias
Comments: 5
Category: UI for WPF
Type: Bug Report
1
We use 'xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"' in our application.
The problem is that DrapAndDrop does not work anymore, no Events are fired.

Since our last release we didn't change anything at our UI and as I tried a few days ago to drag something in the application and nothing happened.

Did something change with the previous mentioned reference?
What are possible solutions?

Thank you in advance 
Declined
Last Updated: 22 May 2017 10:47 by ADMIN
Created by: Joseph
Comments: 1
Category: UI for WPF
Type: Bug Report
0
I have a diagram with about 45 custom image objects contained within it. When I export the diagram to a png using RadDiagram.Export("PNG") there are 3 images that are not rendered in the image.
Completed
Last Updated: 16 May 2017 10:30 by ADMIN
When MainView.xaml is opened, the designer throws NullReferenceException because the SelectedOutlookSection is not initialized.

Workaround: If SelectedOutlookSection is null, then initialize it to point to the first item from the collection of outlook sections:

public OutlookSection SelectedOutlookSection
{
    get
    {
        if (this._selectedOutlookSection == null)
        {
            this._selectedOutlookSection = this.OutlookSections.FirstOrDefault();
        }

        return this._selectedOutlookSection;
    }
  ...
}

The fix is available in R1 2017 SP1.
Declined
Last Updated: 15 May 2017 15:57 by ADMIN
Created by: Kevin
Comments: 2
Category: UI for WPF
Type: Feature Request
0
Currently if a column is bound to a field of type DateTimeOffSet it is not displayed using the culture like DateTime is. It would be nice if this is supported in the future
Unplanned
Last Updated: 15 May 2017 15:54 by ADMIN
When setting IsSynchronizedWithCurrentItem to true, the RadListBox behaves differently from the standard ListBox; changing the selection in the RadListBox does not update the current item of the underlying ICollectionView.