Unplanned
Last Updated: 26 Aug 2020 09:01 by ADMIN
Created by: Sunny
Comments: 1
Category: UI for WinForms
Type: Bug Report
1

I'm trying to initialize RadControlSpyForm in a .NET 2.0 application and it throws the following exception:

System.InvalidCastException: 'Unable to cast object of type 'System.Windows.Forms.SplitContainer' to type 'System.ComponentModel.ISupportInitialize'.

I did some research, and I found that since SplitContainer doesn't inherit from System.ComponentModel.ISupportInitialize until .NET 4.0, this message shows up in solutions where a project is downgraded from .NET 4.0, but the Form designer isn't regenerated to remove the SplitContainer cast to ISupportInitialize to call BeginInit() and EndInit().

 

Unplanned
Last Updated: 24 Aug 2020 07:46 by ADMIN
Provide support for inserting a Spreadsheet control as in  MS Word.
Unplanned
Last Updated: 20 Jul 2020 11:36 by ADMIN
Created by: Patrick
Comments: 0
Category: UI for WinForms
Type: Feature Request
2
JavaScript actions cause a script to be compiled and executed by the JavaScript interpreter. Depending on the nature of the script, the values of the interactive form fields in the document can be validated or updated or the visual appearances of the fields can be changed.
Unplanned
Last Updated: 17 Apr 2024 14:33 by ADMIN

UI for WinForms - Latest version.

RadRibbonBarBackstageView - Edit UI Elements

RootRadElement.BackstageViewElement.BackstageItemsPanelElement.BackgroundImage

Click the … button and select your image.

 

To REMOVE this image you SHOULD be able to do the following:

click on the property BackgroundImage which should highlight the image-string completely.

click delete.

done.

What you HAVE to do is this: 

click on the property BackgroundImage.

click delete.

BEFORE YOU LEAVE THIS PROPERTY you have to click the … box

Once the box opens you have to click "Cancel"

 

Right below this property is BackgroundImageLayout - set to "Center"

There's a dropdown arrow presumably to allow you to change the layout but nothing happens when you click it.

 

*Missing Property?*

Whatever image you place in this control it gets stretched and there doesn't appear to be any way to avoid this:

place an image.

run the winforms ap.

set the main form in normal mode (not maximized) and resize the height.

Your image will stretch, shrink...this is not a UI property that should be presumed.  We should be able to set None, Tile, Center, Stretch or Zoom.

 

Still *LOVE* your products :)

Kindest regards,

Curtis Smith 

Unplanned
Last Updated: 29 May 2020 07:52 by ADMIN

Submitted on customer behalf:

https://photos.app.goo.gl/ZsxVkRkXdQz7KcDf6

The problem, as described in the video, is that the thumb does not 'snap' to the point touched and then follow the touch as it is dragged. It is therefore difficult at times to actually 'grab' hold of the thumb unless you touch the screen in exactly the right point.

Changing the 'SnapToTicks' property purely makes the movement smoother once it is grabbed.


Unplanned
Last Updated: 12 May 2020 11:10 by ADMIN

When the RadMap.ShowSearchBar property is set to true and the BingRestMapProvider is used, it would be nice to have autocomplete suggestion while the user is typing:

https://docs.microsoft.com/en-us/bingmaps/rest-services/autosuggest

Unplanned
Last Updated: 04 May 2020 14:19 by ADMIN
Currently, ScatterSeries and ScatterLineSeries don't support null values.
Unplanned
Last Updated: 28 Apr 2020 11:18 by ADMIN

1. Set the DPI of your main monitor to 150% and the DPI of your secondary monitor to 100%.

2. Start your main form containing RadDataEntry on your secondary monitor.

You will see that that hosted controls inside RadDataEntry are not scaled correctly.

 

Workaround:

Start your main form on your secondary monitor inside OnShown event.

protected override void OnShown(EventArgs e)
{
    base.OnShown(e);

    this.Location = new Point(-800, 100);
}

 

Unplanned
Last Updated: 23 Apr 2020 15:34 by ADMIN
Created by: Tinus
Comments: 0
Category: UI for WinForms
Type: Bug Report
2

1. Set HDPI on your monitor (for example 150%)

2. Set RadDataEntry data source in RunTime

You will see that RadDataEntry hosted controls are not scaled correctly.

Note that there is a related problem if the data source is set in design time. Controls themselves will be scaled correctly, however, text box hosted control's High will not be scaled correctly.

Workaround:
You can subscribe to ItemInitializing event before you set the DataSource and proceed by scaling RadDataEntry hosted controls manually as shown in the following code snipped.

private void radButton1_Click(object sender, EventArgs e)
{
    this.radDataEntry1.ItemInitializing += RadDataEntry1_ItemInitializing;
    this.radDataEntry1.ItemDefaultSize = new Size(200, 26);

    radDataEntry1.DataSource = new Employee
    {
        FirstName = "Sarah",
        LastName = "Blake",
        Occupation = "Supplied Manager",
        StartingDate = new DateTime(2005, 04, 12),
        IsMarried = true,
        Salary = 3500,
        Gender = Gender.Female
    };         
}
private void RadDataEntry1_ItemInitializing(object sender, ItemInitializingEventArgs e)
{
    if (this.radDataEntry1.RootElement.DpiScaleFactor.Width != 1)
    {
        foreach (Control control in e.Panel.Controls)
        {
            control.Scale(this.radDataEntry1.RootElement.DpiScaleFactor);
        }
    }
}

Unplanned
Last Updated: 14 Apr 2020 15:26 by ADMIN

Please refer to the attached sample project and gif file. The ShouldCheckDataRows property of the column is disabled. Hence, the developer will manage the toggle state of the data cells.

There are two problems here:

1. In the HeaderCellToggleStateChanged event we toggle all data rows in correspondence with the header checkbox. Once a data cell value is changed, we set the GridViewCheckBoxColumn.Checked property to Off. However, it is not respected and the header checkbox still remains toggle.

2. Once you scroll the columns horizontally, the header checkbox synchronizes with the value of the GridViewCheckBoxColumn.Checked property. However, all of a sudden the HeaderCellToggleStateChanged event is toggled again even though we didn't clicked the checkbox in the header at all. This will make all data cells unchecked due to the code in the HeaderCellToggleStateChanged event.

Unplanned
Last Updated: 09 Apr 2020 07:39 by ADMIN

Please refer to the provided sample gif file. You will notice that when you are dragging within the same RadGridView control, there is a horizontal line indicating the drop position. The image is controlled by the RadGridView.TableElement.RowDragHint property which specifies the horizontal line illustrating the drop position.

This horizontal line is missing when you drop over another target grid control.

Unplanned
Last Updated: 27 Mar 2020 07:50 by ADMIN
In MergeFields the general switch may be used to format the Result Text. The text may appear in lowercase, uppercase, title case and so on.
Unplanned
Last Updated: 23 Mar 2020 07:34 by ADMIN
The customers need to additionally process the elements after inserting them into the document or just change the caret position relative to the inserted element. At this point, the methods only insert elements without returning the concrete instance or copy the element passed as a parameter, if such overload is available (editor.InsertTable(table) clones the table and inserts a different instance in the document, InsertInline() clones the inline as well).
Unplanned
Last Updated: 23 Mar 2020 06:50 by ADMIN

1. Create a brand new project and add a ShapedForm.

2. Set the Size to 800,550.

3. Set the FormBorderStyle to FixedToolWindow.

You will notice that at run-time the size is changed to 816, 589.

Workaround:

        public ShapedForm1()
        {
            InitializeComponent();

            this.MaximumSize = new Size(800, 550);
        }

Unplanned
Last Updated: 17 Mar 2020 13:38 by ADMIN
When copy a modified Heading from Word document and paste it into a not empty RadRichTextEditor the modified styles are not correctly imported.
Unplanned
Last Updated: 17 Mar 2020 06:50 by ADMIN

Please refer to the attached gif file for a better illustration of the steps how o reproduce the undesired behavior.

Workaround: use RadForm

Unplanned
Last Updated: 05 Mar 2020 10:03 by ADMIN
Created by: Gilles
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

How to reproduce:

private void RadForm1_Load(object sender, EventArgs e)
{
    this.radWebCam1.TakeSnapshot();
}

Workaround:

public class CustomWebCam : RadWebCam
{
    public override void TakeSnapshot()
    {
        FieldInfo fi = typeof(RadWebCam).GetField("player", BindingFlags.NonPublic | BindingFlags.Instance);
        object value = fi.GetValue(this);

        if (value == null)
        {
            return;
        }

        PropertyInfo propertyInfo = value.GetType().GetProperty("EvrVideoDisplay", BindingFlags.NonPublic | BindingFlags.Instance);
        value = propertyInfo.GetValue(value, null);

        if (value == null)
        {
            return;
        }

        base.TakeSnapshot();
    }
}

Unplanned
Last Updated: 27 Feb 2020 08:56 by ADMIN
Created by: Micronova
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Currently, RadFileDialogs uses a RadAutoCompleteBox for specifying the folder/file name. It would be nice to have a drop down with recent files:

Unplanned
Last Updated: 26 Feb 2020 10:41 by ADMIN
When RadOpenFileDialog is opened, open an Explorer window , select a file, copy it and paste in the folder displayed from the RadOpenFileDialog. If the same operation is performed using a standard WinForms OpenFile dialog the pasted file is selected after the paste operation.
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.