Completed
Last Updated: 04 Jan 2022 13:32 by ADMIN
Release R1 2022

To reproduce:

- .NET Core version: 3.1

- Visual Studio 2022: Version 17.0.0 Preview 7.0

 - Telerik UI for WinForms version: 2021.3.1019-hotfix

1. Create a new Excel-Inspared template project.

2. Select the Review tab and the Properties section try to open the Items collection.

The attached Error.gif illustrates the steps.

Workaround: use the Smart tag (see SmartTag.gif)

Completed
Last Updated: 29 Nov 2021 11:16 by ADMIN
Release R1 2022
Created by: Al
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Request read only property on the RadMultiColumnComboBox control
Completed
Last Updated: 09 Nov 2021 09:01 by ADMIN
Release R3 2021 SP1

The snap layouts window can be opened by using the Win+Z keyboard combination, but when the mouse is over the Maximize button of RadForm, the window is not shown.
MSDN information is available here: https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/apply-snap-layout-menu

Following the guides from MSDN, we need to override the WndProc method of the form, listen to the WM_NCHITTEST message, and return HTMAXBUTTON result when the mouse is over the maximize button.


private const int HTMAXBUTTON = 9;
protected override void WndProc(ref Message m)
{
    if (m.Msg == NativeMethods.WM_NCHITTEST)
    {
        // Get the hit test location from message parameters
        Point location = this.ParseIntPtr(m.LParam);
        location = this.GetMappedWindowPoint(location);

        // Get the hit tested element and check if it is the Maximize button
        RadElement element = this.ElementTree.GetElementAtPoint(location);
        if (element == this.FormElement.TitleBar.MaximizeButton)
        {
            m.Result = new IntPtr(HTMAXBUTTON);
            return;
        }
    }

    base.WndProc(ref m);
}

private Point ParseIntPtr(IntPtr param)
{
    if (IntPtr.Size == 4) //x86
    {
        return new Point(param.ToInt32());
    }
    else //x64
    {
        long intParam = param.ToInt64();
        short x = (short)intParam;
        short y = (short)(intParam >> 16);
        return new Point(x, y);
    }
}

protected virtual Point GetMappedWindowPoint(Point screenPoint)
{
    NativeMethods.POINT inputPoint = new NativeMethods.POINT();
    inputPoint.x = screenPoint.X;
    inputPoint.y = screenPoint.Y;

    if (this.IsHandleCreated)
    {
        NativeMethods.MapWindowPoints(new HandleRef(this, IntPtr.Zero), new HandleRef(this, this.Handle), inputPoint, 1);
    }

    return new Point(
    inputPoint.x + this.FormBehavior.ClientMargin.Left,
    inputPoint.y + this.FormBehavior.ClientMargin.Top);
}

              
Completed
Last Updated: 04 Nov 2021 11:50 by ADMIN
Release R3 2021 SP1
 The WorkbookContentChanged event is invoked right after importing a document. 
Completed
Last Updated: 02 Nov 2021 16:20 by ADMIN
Release R3 2021 SP1
Created by: Igo
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

1. Run Telerik Theme Viewer app

2. Set Office2019Dark theme

3. Navigate to "Item Containers" tab

You will see that radTreeView does not display nodes.

 

Workaround:

this.radTreeView1.FullRowSelect = false;

Completed
Last Updated: 21 Oct 2021 10:28 by ADMIN
Release R3 2021 SP1
Created by: Frank
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
'Parameter is not valid.' exception is thrown, when loading a file dialog. The exception is thrown, when trying to retrieve icons for the files and folders in the dialog.
Completed
Last Updated: 20 Oct 2021 10:32 by ADMIN
Release R3 2021 SP1
To reproduce:
Add several RadTreeNodes to RadTreeView and then call the Clear method of the control.
Completed
Last Updated: 20 Oct 2021 09:37 by ADMIN
Release R3 2021 SP1
Documents with very small container bounds may fail to load.
Completed
Last Updated: 19 Oct 2021 15:41 by ADMIN
Release R3 2021 SP1
1. Create a new windows forms .net 5.0 project

2. Add a richtexteditor control to the form

3. Set IsSpellCheckingEnabled = true

4. Run the project, type invalid word in text box.  The text is not spell-checked.
Completed
Last Updated: 18 Oct 2021 09:56 by ADMIN
Release R3 2021 SP1 (LIB 2021.3.1019)
Created by: Paul
Comments: 2
Category: UI for WinForms
Type: Bug Report
2
On some (but not all!) systems (including my development laptop) an application using RadOpenFileDialog completely hangs (freezes) when e.g. selecting another directory in the RadOpenFileDialog.
Completed
Last Updated: 08 Oct 2021 13:12 by ADMIN
Release R3 2021 SP1
  1. Run TelerikExamplesLauncher.exe - GanttView "First Look" example
  2. Scroll and select a task near the bottom, for example: "Send your engagement announcement to newspapers" under "The Guest > 6 Months +"
  3. Use splitter to resize between TextView and GraphicalView

You will see that GraphicalView doesn't move but TextView loses task position and scrolls to the top.

Note that using mouse Scroll refreshes the correct position of TextView on the selected task.

Completed
Last Updated: 24 Sep 2021 09:02 by ADMIN
Release R3 2021 SP1
Created by: Jana
Comments: 0
Category: UI for WinForms
Type: Bug Report
2

When we have start position set to center screen:

            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;

RadForm does not calculate the correct location of the form on HDPI devices.

Completed
Last Updated: 14 Sep 2021 07:41 by ADMIN
Release R3 2021
Created by: CHEE HANG
Comments: 0
Category: UI for WinForms
Type: Feature Request
8
Add grouping to the navigation view like attached
Completed
Last Updated: 03 Sep 2021 16:32 by ADMIN
Release R3 2021

This doesn't work in both .NET Framework and .NET 5.

Add a RadForm and set its AutoScroll property to true at design time. When you add any controls that are located outside the form's size a scroll bar appears. However, it seems to be disabled and the user is not allowed to scroll at design time. 

Completed
Last Updated: 03 Aug 2021 16:21 by ADMIN
Release R3 2021

Hello support,

 

i use the radBrowseEditor.

 

Here the code:


        private readonly string ActualPath_LiteDB = "";

        public F_ApplicationsSettings()
        {
            InitializeComponent();

            //set up actual paths
            ActualPath_LiteDB = Settings.PathToLogLiteDB;
            radBrowseEditor_db_path.Value = ActualPath_LiteDB;

            this.Text = F_Translations.GetTranslationText("settings");
        }

When i set the DialogType to FolderBrowseDialog the initial directory the its working:

But if i set it the DialogType to RadOpenFolderDialog its not working. Its always showing the Desktop folder:

 

Completed
Last Updated: 09 Jul 2021 09:27 by ADMIN
Release R3 2021
Created by: Thomas
Comments: 1
Category: UI for WinForms
Type: Bug Report
0

Hello Telerik Team,

our Customor works primary on Microsoft Surfaces. These scales on 200 %.

We use AutoScaleMode DPI and all is fine, except the Ribbon Bar. It cuts the ribbon Bar in half, if it's normally collapsed.

We didn't find any solution to fix this.

 

Interesting is the Resizing of the Bar. if you move it between to monitors

  • start the process on 200% Monitor
  • move to 100% Monitor
  • Be sure the Bar is collapsed
  • Open and close the bar at least 2 times
  • move to 200% Monitor back
  • If you open the bar now, its size is now the original size and goes over the window.
  • Close the bar and open it again, than you see the bars lenght is correct, but the height is halved.
  • Move to 100% Monitor again
  • if you open the bar now, the bar goes only over the half window.
  • close the bar and open it again, than the length is correct again, and the height has doupled to its normal value.

 

Maybe it's only a configuration we didn't found yet, maybe it's really a bug.

And a second question: If we maximize the Window, the TitleText hides. Is it possible to show the TitleText in maximized mode too.

Completed
Last Updated: 24 Jun 2021 14:40 by ADMIN
Release R3 2021

Please refer to the attached if file. You will notice that the converter wizard will skip the designer file if the form's file end with "Settings".

Workaround: change the file name to skip ending with "Settings"

Completed
Last Updated: 19 May 2021 08:10 by ADMIN
Release R1 2021 SP2
Completed
Last Updated: 11 May 2021 11:13 by ADMIN
Release R2 2021
Created by: atfats
Comments: 3
Category: UI for WinForms
Type: Feature Request
9

hi...

A Callout Control is in your roadmap for winforms please ?

thx in advance...

 

regards,

Completed
Last Updated: 05 May 2021 12:57 by ADMIN
Release R2 2021
Created by: n/a
Comments: 4
Category: UI for WinForms
Type: Feature Request
13
Add Office 2016 theme to the WinForms suite.