Unplanned
Last Updated: 22 Mar 2024 15:13 by ADMIN
Created by: Arturo
Comments: 1
Category: UI for WinForms
Type: Feature Request
1

Hi,

Please, add a property  or method to the RadWebCam control to set video bit rate or quality. Currently is fixed a 4 mbits and it results in very poor image quality at high resolutions.

Please find attached images to see the difference  between snapshot and video recording. With fast moving pictures is even worse.

Thanks.

 

Unplanned
Last Updated: 28 Aug 2018 12:10 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: UI for WinForms
Type: Feature Request
1

			
Unplanned
Last Updated: 15 Oct 2018 10:51 by ADMIN
When the current SpanLayoutBox is split (for example by inserting space), the DocumentPosition created with trackDocumentChangeEvents option (with some of the constructor accepting the boolean 'trackDocumentChangeEvents' parameter) jumps back with two symbols.
Completed
Last Updated: 05 Feb 2019 15:11 by ADMIN

Until released the text can be cleared this way:

GridSearchCellElement searchCell = this.radGridView1.TableElement.FindDescendant<GridSearchCellElement>();
if (searchCell != null)
{
    searchCell.SearchTextBox.Text = "";
}

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.
Completed
Last Updated: 19 Feb 2019 14:07 by ADMIN
This will handle the scenario of having different image sets for different DPI.
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: 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
Completed
Last Updated: 15 Feb 2019 16:46 by ADMIN

AutoCompleteSuggestHelper, Assembly: Telerik.WinControls.UI, Version=2019.1.117.40

 

Isnt the hilighted line (contains branch) very unoptimized.

https://rhale78.wordpress.com/2011/05/16/string-equality-and-performance-in-c/

Multiple ToLower string operation. Why not let the framework do the operation since you are always using ordinal?

optimized version: return item.Text.Contains(this.Filter, StringComparison.OrdinalIgnoreCase);


 

protected virtual bool DefaultFilter(RadListDataItem item)
    {
      switch (this.suggestMode)
      {
        case SuggestMode.StartWiths:
          return item.Text.StartsWith(this.Filter, this.StringComparison);
        case SuggestMode.Contains:
          if ((this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.InvariantCultureIgnoreCase || (this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.CurrentCultureIgnoreCase)
            return item.Text.ToLower().Contains(this.Filter.ToLower());
          return item.Text.Contains(this.Filter);
        default:
          return item.Text.StartsWith(this.Filter, this.StringComparison);
      }
    }

 

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: 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. 
Completed
Last Updated: 04 Apr 2019 13:29 by Dimitar
Release R2 2019 (LIB 2019.1.408)
The issue can be reproduced by setting the AssociatedControl property in the designer and later at run-time.
Completed
Last Updated: 04 Apr 2019 13:43 by ADMIN
Release R2 2019 (LIB 2019.1.408)
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: 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: 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: 23 May 2023 07:58 by ADMIN

Pasting a Network path in the breadcrumb navigates the user to the respective location. However, the UNC path is displayed as expected. Please refer to the attached gif files.

 

 

 

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: 29 Nov 2022 05:40 by ADMIN
Created by: Dev
Comments: 2
Category: UI for WinForms
Type: Feature Request
0

Currently, RadGridView offers GridViewImageColumn. However, it would be good to offer support for SVG images out of the box.  

One possible approach is to introduce a new property for the GridViewImageColumn - ImageDrawType = ImageDrawType.Svg that controls what kind of images this column will store.

Second approach is to introduce a new GridViewSvgImageColumn.

Completed
Last Updated: 24 Feb 2023 10:20 by ADMIN
Release R1 2023

The assembly is required for our RadMarkupEditor using the IE rendering engine. It allows you to specify HTML-like text formatting at design time in the Properties window of Visual studio: