Unplanned
Last Updated: 20 Feb 2020 12:29 by ADMIN
Created by: Dan
Comments: 0
Category: UI for WinForms
Type: Feature Request
5
Introduce a Converter tool standalone application which does not depend on a specific Visual Studio version.
Unplanned
Last Updated: 17 Feb 2020 08:32 by ADMIN
Import hover style for a link in HTML:

a:hover {
            color: #3ca9f6
}
Unplanned
Last Updated: 17 Feb 2020 13:52 by ADMIN
When a developer set the RadForm.ThemeName property and then drag any controls onto the form, they will get automatically this theme applied to the control's ThemeName property. However, if you already have some controls on the form with ThemeName = "X" and you change RadForm.ThemeName to "Y", all controls' ThemeName should be changed to the new RadForm.ThemeName as well.
Unplanned
Last Updated: 06 Feb 2020 12:13 by ADMIN
We want to have full access to the 1920x1080 cameras at max FPS in the preview stream. But when we record, we'd like to record the video at smaller resolution (720p) and a lower FPS, ~30 or so we could use something like FFMPEG to resize post recording, but we'd rather not have to do that extra processing.
Unplanned
Last Updated: 22 Jan 2020 13:20 by ADMIN
Created by: Desislava
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Similar to RadMulticolumnComboBox but it should allow multiple items to be checked. Please refer to RadDropDownList and RadCheckedDropDownList. 

Workaround: 

https://docs.telerik.com/devtools/winforms/controls/multicolumncombobox/how-to/multiple-selection

Unplanned
Last Updated: 27 Oct 2020 10:25 by ADMIN

Hi, I would like to use the conversion tool to convert a WinForms project to Telerik controls. Unfortunately the menu item is not showing up for me. See attached screenshot. 

The project to be converted does include a reference to System.Windows.Forms. I am using VS2019 with the latest Telerik Winforms release. 

Thanks,

-Lou

Unplanned
Last Updated: 22 Oct 2019 08:16 by ADMIN

I would like to request 2 features/properties:

  1. Disable going back to the days on year editing end (hacked here by the SelectFirstItem() override).
  2. Enable inserting number of days that is currently more than the allowed days in the month by adding one month (hacked by the HandleKeyPressDay() override and MyDayLogic())
    • the date set is 15.09.2019, we start writing the date 31.12.2019. Currently you have to change the months first than the days
    • i guess this is a problem for formats with days first but it is a problem

 

public class MyMaskDateTimeProvider : MaskDateTimeProvider
{
public MyMaskDateTimeProvider(string mask, CultureInfo culture, RadMaskedEditBoxElement owner)
: base(mask, culture, owner)
{
this.AutoSelectNextPart = true;
}

public override void SelectFirstItem() { } //base.SelectFirstItem(); //we do not want to go back to the days after the year part

protected override void HandleKeyPressDay(MaskPart part, KeyPressEventArgs e)
{
if(!int.TryParse(e.KeyChar.ToString(), out int result))
return;
string str = part.value.ToString();
int num1 = 0;
int num2;
if(part.hasZero)
{
if(num1 < part.min
|| num1 > part.max)
{
num2 = result;
}
else
{
if(str.Length > 1)
str = str.Substring(1);
num2 = int.Parse(str + e.KeyChar);
}
}
else
{
if(str.Length > 1)
str = str.Substring(1);
num2 = int.Parse(str + e.KeyChar);
}

if(part.day)
{
MyDayLogic(part, num2, result);
}
else
{
part.value = num2 < part.min || num2 > part.max
? result
: num2;
}

part.hasZero = result == 0;
}

private void MyDayLogic(MaskPart part, int num2, int result)
{
//logic for not continuing when changing days and current set month has less days then days needed, when that happens add one month to the current
if((num2 < part.min)
|| (num2 > part.max))
{
if((num2 > part.min)
&& (num2 <= 31))
{
SelectNextEditableItem();
Up(this.List[this.SelectedItemIndex], this.MinDate, this.MaxDate);
SelectPrevEditableItem();
SelectNextEditableItem();
part.value = num2;
}
else
{
part.value = result;
}
}
else
{
part.value = num2;
}
}
}

Unplanned
Last Updated: 17 Sep 2019 08:46 by ADMIN
Created by: Jared
Comments: 1
Category: UI for WinForms
Type: Feature Request
1

Hi,

 

It would be cool if we had a Material Dark Theme,

More and more we see clients requesting this from our apps since Google has popularized the trend now.

 

Thanks

Unplanned
Last Updated: 10 Sep 2019 05:20 by ADMIN
Unplanned
Last Updated: 08 Apr 2019 08:12 by ADMIN
Created by: Thomas
Comments: 0
Category: UI for WinForms
Type: Feature Request
1
When one performs a pan operation the axis minimum and maximum should be automatically adjusted. See https://www.okex.com/market?product=btt_usdt
Unplanned
Last Updated: 08 Apr 2019 06:42 by ADMIN

Use attached to reproduce:

1. Click the button

2. Change the tab and go back to the diagram

Workaround:

Add the layout before showing the form

Unplanned
Last Updated: 15 Sep 2023 11:01 by ADMIN
Created by: Petya
Comments: 1
Category: UI for WinForms
Type: Feature Request
3
Implement interactive API Reference in the form of a class hierarchy diagram. Allow navigation to the base classes or implemented interfaces, as well as to any child members. Include the API documentation of each member/class, so that users can quickly navigate the API on the site. 
Unplanned
Last Updated: 25 Feb 2019 11:32 by ADMIN
Using the RadDocumentEditor class, the users can change the margin of the current section. However, there isn't a method allowing them to change the default section margin of the document. 
Unplanned
Last Updated: 21 Feb 2019 13:42 by ADMIN
One should not be able to use the ribbon bar buttons when a protected document is opened or the rich text editor is read-only. 
Unplanned
Last Updated: 24 May 2019 08:29 by ADMIN
Created by: n/a
Comments: 6
Category: UI for WinForms
Type: Feature Request
1
The new series will be similar to the RadarColumnSeries which is already available. https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/chart-types/polar-chart
Unplanned
Last Updated: 31 Jan 2019 07:48 by ADMIN
The functionality should be similar to the one in RadRibbonBar: https://docs.telerik.com/devtools/winforms/controls/ribbonbar/designing-radribbonbar/adding-key-tips
Unplanned
Last Updated: 15 Feb 2022 14:37 by ADMIN
Created by: Shawn
Comments: 3
Category: UI for WinForms
Type: Feature Request
4

I have a custom Fluent theme as a package, it would be nice if there was a way to load packages (Embedded Resource or files) with the RadThemeManager.

Rather than typing this: Telerik.WinControls.ThemeResolutionService.LoadPackageResource("GUI.Themes.Fluent_Custom.tssp");

Right now the RadThemeManager only supports XML files. Feeding it a tssp file doesn't work.

 

For it to show up in design-time I have to assign it all of the unpackaged XML files and then delete the RadThemeManager for the theme to show up, otherwise the load time is like 7 seconds, where as embedded packages load super fast.

The fluent theme has a lot of XML files and this is a huge pain, supporting 1 Embedded Resource tssp package would be nice.

 

Would also be nice if the RadThemeManager could apply/change a theme globally somewhere in the SmartTag menu or RadThemeManager properties.

Instead of having to type this: ThemeResolutionService.ApplicationThemeName = "Fluent_Custom";

Unplanned
Last Updated: 16 May 2019 05:53 by ADMIN
This would allow switching the focus between form field controls by using the Tab key.
Unplanned
Last Updated: 16 Sep 2022 10:17 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: UI for WinForms
Type: Feature Request
3
Implement functionality to rotate the text in a cell.
Unplanned
Last Updated: 26 Jul 2019 12:51 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 3
Category: UI for WinForms
Type: Feature Request
5