Declined
Last Updated: 11 Jun 2018 13:57 by Anthony
Setting the TextWrapping to Wrap or WrapWithOverflow will not allow the WatermarkContent to be wrapped.

Reason for decline: 

Instead of setting the content inline, we recommend setting it as follows: 

<telerik:RadWatermarkTextBox Width="100">
	<telerik:RadWatermarkTextBox.WatermarkContent>
		<TextBlock TextWrapping="Wrap" Text="Watermark Content Watermark Content Watermark Content Watermark Content" />
	</telerik:RadWatermarkTextBox.WatermarkContent>
</telerik:RadWatermarkTextBox>

More information can be found in our help about using the WatermarkContent and WatermarkTemplate properties: https://docs.telerik.com/devtools/wpf/controls/radwatermarktextbox/features#using-the-watermarkcontent-property
Please let us know if this is not applicable in the scenario of your application.
Unplanned
Last Updated: 07 Jun 2018 14:32 by Keith
Created by: Keith
Comments: 0
Category: UI for WPF
Type: Feature Request
11
Similar to File Explorer in Windows 10, it would be helpful to have a Quick Access section in the left navigation pane with the ability to pin frequently used items.
Completed
Last Updated: 07 Jun 2018 08:17 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for WPF
Type: Feature Request
18
File explorer with the drag and drop upload and just a richer interface
Completed
Last Updated: 07 Jun 2018 08:15 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: UI for WPF
Type: Feature Request
33
A component to easily chat with visitors on a website.  It's becoming popular to be able to interact and offer support that way.  Maybe based on the Windows Live Components or something along those lines.
Completed
Last Updated: 07 Jun 2018 06:42 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: UI for WPF
Type: Bug Report
0
When both horizontal and vertical ScrollBars are visible in Fluent theme, the "BottomHandle" RepeatButton cannot be pressed as it is overlapped by the horizontal ScrollBar on MouseOver. 

Default behavior will be changed and the scrollbars will be reordered in the ScrollViewer ControlTemplate so on MouseOver the current ScrollBar will have higher Canvas.ZIndex. 
Declined
Last Updated: 04 Jun 2018 08:12 by ADMIN
look the attach file.
Declined
Last Updated: 31 May 2018 13:04 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: UI for WPF
Type: Bug Report
4
Controls are not visible in design-time when the build platform is x64.
Completed
Last Updated: 13 Apr 2018 05:46 by ADMIN
Completed
Last Updated: 28 Mar 2018 15:01 by ADMIN
Created by: Paul
Comments: 26
Category: UI for WPF
Type: Feature Request
36
Would it be possible to add a new theme that accurately tracks the Google Material Design guidelines?  (http://www.google.com/design/spec/material-design/introduction.html).

Available in the 2017 R2 Release.
More information you can find here: http://docs.telerik.com/devtools/wpf/styling-and-appearance/themes-suite/common-styling-appearance-material-theme
Unplanned
Last Updated: 20 Mar 2018 09:26 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: UI for WPF
Type: Feature Request
2

			
Declined
Last Updated: 19 Mar 2018 12:55 by ADMIN
Created by: wu
Comments: 1
Category: UI for WPF
Type: Feature Request
0
looking the attach file,when resize the second gridview's column moving back and forth when at first run the sample,the after columns flicker and the width grow and lessen.and when resize the third column,the 'unit price' column will become the min width.
but when test the microsoft's datagrid,it is good,the any other column width's change is gentle.
Completed
Last Updated: 08 Mar 2018 16:34 by ADMIN
User can set AutoCalculateBounds to True by the following way:

 public class CustomClusterGenerator : DefaultClusterGenerator
    {
        public override ClusterData CreateCluster(Location center, object item)
        {
            var clusterData = base.CreateCluster(center, item);
            clusterData.AutoCalculateBounds = true;
            return clusterData;
        }
    }

  this.VisualizationLayer1.ClusterGenerator = new CustomClusterGenerator();

When clustering 4 points:

ObservableCollection<DataItem> items = new ObservableCollection<DataItem>()
            {
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 30) },
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 34) },

                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(22, 32) },
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(18, 32) },
            };

            this.VisualizationLayer1.ItemsSource = items;

EXPECTED:  ClusterData's Bounds must  be:

WEST: 30 and EAST: 34.

Actual Values are 30 and 30 (29.9999 and 30).

Completed
Last Updated: 08 Mar 2018 14:53 by ADMIN
ADMIN
Created by: Kalin
Comments: 2
Category: UI for WPF
Type: Feature Request
3
Available in LIB version 2018.1.312.
Unplanned
Last Updated: 26 Feb 2018 12:20 by ADMIN
ADMIN
Created by: Sia
Comments: 0
Category: UI for WPF
Type: Feature Request
1
When you start editing the input control, the watermark text should go on top of it or to the left.
Completed
Last Updated: 26 Feb 2018 12:19 by ADMIN
Created by: Tim
Comments: 13
Category: UI for WPF
Type: Feature Request
25
It would be awesome if Telerik created custom OpenFileDialog, SaveFileDialog and BrowseFolderDialog controls/windows/dialogs that would mimic the functionality found in: Microsoft.Win32.

- Differentiate from competition - Create controls that other WPF controls packages don't have
- Allow users to have common styling/views across their application
- Make it so our software doesn't have to reference Microsoft.Win32, we can continue to have a native Telerik solution
- Could make it more intuitive to program with than the Microsoft dialog (with filters, startup folder etc)

Reference post:
http://www.telerik.com/forums/why-is-there-no-openfiledialog-in-telerik

Available in R3 2017 Official Release of UI for WPF.
Check what's new in R3 2017 here: 
http://www.telerik.com/support/whats-new/wpf/release-history/ui-for-wpf-r3-2017
Completed
Last Updated: 23 Feb 2018 16:41 by ADMIN
You have, for example rectangle which is in ContentControl in XAML, next to FluidC.C.

FluidContentControl is in small state. Ona  button click SmallContent is assigned to the Rectangle.

This leads to the exception stated that rectangle is already a logical child of another element.
Completed
Last Updated: 19 Feb 2018 15:12 by ADMIN
Basing on the "{StaticResource FilterControlStyle}" would cause an InvalidArgumentException, if the types would mismatch. 
If you are to base on a custom style on the default style of either of those controls, you can do it by type reference - e.g. BasedOn="{StaticResource {x:Type telerik:FilteringControl}}"
Declined
Last Updated: 14 Feb 2018 09:01 by ADMIN
Created by: wu
Comments: 1
Category: UI for WPF
Type: Feature Request
0
with windows10/2k DPI/14 inch screen ,when show the gridview gridline,the line is different.
     the other things,when the tabitem is selected,the dropdownmenu can't mark the selected item.
   look the attach files!