Telerik Forums
UI for WinForms Forum
1 answer
134 views
Is there any way to save and load filtered GridviewColorColumn columns correctly? Saving works correctly, but when loading the saved xml, only a conversion error (expected data type probably int32) is displayed.
Dinko | Tech Support Engineer
Telerik team
 answered on 10 Nov 2022
1 answer
406 views

[C# WinForm]

Regarding the Row Header (as shown in the figure below: (R1, R2, R3,...)

Question:

  1. How to get the Text of the Row Header?  - E.g. string rowHeaderText = radGridView1.Rows[0].......

Reference:

https://www.telerik.com/forums/radgridview-row-header-related-questions

Based on the reference topic, I have attempted the to get the Row Header using Visual Rows.

var cellContent = this.radGridView1.TableElement.VisualRows[0].VisualCells[0].Text;

But seems like the VisualRows doesn't reflect all the rows.

For example, I have populated 77 rows as shown in first figure below.

However, the count of VisualRows is 4 only (as shown in second figure).

 

 

Formatting Row Header:

private void dgvMap_ViewCellFormatting(object sender, Telerik.WinControls.UI.CellFormattingEventArgs e)
        {
            if (e.CellElement is GridRowHeaderCellElement)
            {
                    e.CellElement.Text = string.Format("R{0}", dgvMap.CurrentView.ViewInfo.Rows.IndexOf(e.Row) + 1);
                    var element = new RadButtonElement();
                    element.Margin = new Padding(3, 3, 3, 3);
                    element.Padding = new Padding(2, 0, 2, -2);
                    element.ImageAlignment = ContentAlignment.MiddleCenter;
                    element.Alignment = ContentAlignment.MiddleCenter;
                    element.ForeColor = Color.Black;
                    element.Text = string.Format("R{0}", dgvMap.CurrentView.ViewInfo.Rows.IndexOf(e.Row) + 1);
                    element.AutoSizeMode = RadAutoSizeMode.Auto;
                    element.MinSize = new Size(80, 50);
                    e.CellElement.Children.Add(element);
                    e.CellElement.ForeColor = Color.White;
            }

 

Populating Rows & Columns:

            numberOfRow = int.Parse(maxRow);
            numberOfColumn = int.Parse(maxCol);

            for (int j = 1; j <= numberOfColumn; j++)
                dgvMap.Columns.Add(string.Format("C{0}", j));


            for (int k = 1; k <= numberOfRow; k++)
            {
                dgvMap.Rows.Add(new string[] { "" });
            }

            for (int k = 1; k <= numberOfRow; k++)
            {
                for (int j = 1; j <= numberOfColumn; j++)
                {
                    string key = string.Format("{0},{1}", this.dgvMap.TableElement.VisualRows[k-1].VisualCells[0].Text, dgvMap.Columns[j - 1].Name);
                  
                }
            }



 

Dinko | Tech Support Engineer
Telerik team
 answered on 09 Nov 2022
2 answers
289 views

We use RadDock.SaveToXml and LoadFromXml to store the current dock state of our WinForms application.

We have a problem that if a user floats a ToolWindow and then reattaches it and then the RadDock SaveToXml is called a new ToolTabStrip appears to be created. This means that when a new ToolWindow is added to the ToolTabStrip (found by name), it is adding the ToolWindow to the wrong ToolTabStrip and the new ToolWindow cannot be seen. 

I am wondering how to fix this and think the best way would be to use an event triggered on re-docking to place the ToolWindow being re-docked in the correct ToolTabStrip. Is there any suggested way to do this or any other solution?

Before floating and re-docking the ToolWindow:

<Telerik.WinControls.UI.Docking.ToolTabStrip SelectedIndex="0" CanUpdateChildIndex="True" Size="200, 994" Location="1, 1" CausesValidation="False" Name="toolTabStrip_Navigation" TabIndex="2" TabStop="False">
      <SizeInfo SplitterCorrection="0, 0" AutoSizeScale="0, 0" />
      <Controls>
        <Telerik.WinControls.UI.Docking.ToolWindow Caption="" AllowedDockState="Docked, Hidden, AutoHide, Floating" PreviousDockState="Docked" Name="twNavigation" Size="192, 960" Location="4, 30" AccessibleDescription="Explorer" AccessibleName="Explorer" Font="Microsoft Sans Serif, 8.25pt" Text="Explorer" />
      </Controls>
    </Telerik.WinControls.UI.Docking.ToolTabStrip>

 

After re-docking the ToolWindow:

 <Telerik.WinControls.UI.Docking.ToolTabStrip SelectedIndex="0" CanUpdateChildIndex="True" Size="200, 994" Location="1, 1" Name="DockTabStrip3" TabIndex="4" TabStop="False">
      <SizeInfo SplitterCorrection="0, 0" AutoSizeScale="0, 0" />
      <Controls>
        <Telerik.WinControls.UI.Docking.ToolWindow Caption="" AllowedDockState="Docked, Hidden, AutoHide, Floating" PreviousDockState="Docked" Name="twNavigation" Size="192, 960" Location="4, 30" AccessibleDescription="Explorer" AccessibleName="Explorer" Font="Microsoft Sans Serif, 8.25pt" Text="Explorer" />
      </Controls>
    </Telerik.WinControls.UI.Docking.ToolTabStrip>
    <Telerik.WinControls.UI.Docking.ToolTabStrip CanUpdateChildIndex="True" Size="200, 994" Location="1, 1" CausesValidation="False" Name="toolTabStrip_Navigation" RightToLeft="No" TabIndex="2" TabStop="False">
      <SizeInfo SplitterCorrection="0, 0" AutoSizeScale="0, 0" />
    </Telerik.WinControls.UI.Docking.ToolTabStrip>
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 09 Nov 2022
1 answer
329 views

There is a bug in the RadGridView when using built in filters.

If I filter a grid by a value that returns a single row, the row is visibly selected but and I get a System.NullReferenceException, if I try to get a cell value when the SelectionChanged event is fired.  When I handle the exception, and I then click on the row, it does not fire the SelectionChanged event.

I have to set .CurrentRow = Nothing on FilterChanged in order to click on and select the row, which will then fire the SelectChanged event and I get the value expected.

Here is my relevant code to reproduce the issue;

 

Private Sub RadGridViewFullBadge_SelectionChanged(sender As Object, e As EventArgs) Handles RadGridViewFullBadge.SelectionChanged

            'This If Statement is Required or I get a System.NullReferenceException after the filter is applied

            If RadGridViewFullBadge.CurrentRow IsNot Nothing Then
                RadTextBoxControlTestBadge.Text = RadGridViewFullBadge.CurrentRow.Cells("BadgeID").Value
            End If

    End Sub

    Private Sub RadGridViewFullBadge_FilterChanged(sender As Object, e As GridViewCollectionChangedEventArgs) Handles RadGridViewFullBadge.FilterChanged
        RadGridViewFullBadge.CurrentRow = Nothing
    End Sub

 

James

           
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 08 Nov 2022
1 answer
1.4K+ views

Hello

I have Un-installed all Telerik controls, VS2022.

Used ProgressControlPanelSetupA_2022_1_0727_1.exe to reinstall.

Then, Create new project of type 'Telerik UI for Winforms cSharp .Net Core App'

But I am getting

Severity Code Description Project File Line Suppression State
Error NU1101 Unable to find package UI.for.WinForms.AllControls.Net60. No packages exist with this id in source(s): nuget.org. PackageSourceMapping is enabled, the following source(s) were not considered: 
C:\Program Files\dotnet\library-packs, Telerik, Telerik UI for WinForms 2022.3.921, Telerik UI for WinForms 2022.3.921.0.
ARTesting D:\Development\AngleRing\AngleRingCRM\ARTesting\ARTesting.csproj 1

Please advise

Thank you.
Steven Fellows

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 04 Nov 2022
1 answer
86 views

Hi,

I got the following error while loading the RadForm. Can you help. Thanks

Peter

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 02 Nov 2022
1 answer
206 views

Hello,

In order to sincronize horizontal scrollbars in GridView we are using the source code of the following article:
https://docs.telerik.com/devtools/winforms/knowledge-base/synchronize-scrollbars-in-hierarchy-levels

The thing is that we have tried this code in an empty project with an empty grid with 11 columnas, 30 rows and still 0 child rows and when I move the scroll bar there is too much lag.

The code line that causes the lag is: this.radGridView1.MasterTemplate.Refresh(); in the HScrollBar_ValueChanged method but it's the line that makes everything work.

Is there any way to imporve this or any new method that we can implemente since the article was made in 2018 so there may be there ways to do it.

Thank you and regards.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 02 Nov 2022
1 answer
166 views

Hi,

default behavior when creating a new WinForms project is that this setting is generated in app.config:

<appSettings>
    <add key="TelerikWinFormsThemeName" value="VisualStudio2022Light" />
  </appSettings>

Since I am using .net 6 and appsettings.json, I would love to eliminate app.config entirely.

Is there a way to move this setting to appsettings.json or implement it in code globally (without adding the code in every form or user control) and still maintain the design time functionality?

regards,
Darko

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 02 Nov 2022
1 answer
174 views

Is there a Winforms example of a RadCheckedDropDownList as an Editor for a PropertyGrid?

There is a sample for WPF, https://docs.telerik.com/devtools/wpf/controls/radpropertygrid/features/radenumeditor

There is sample for Winforms Gridview, https://docs.telerik.com/devtools/winforms/controls/dropdown-listcontrol-and-checkeddropdownlist/checkeddropdownlist/how-to/use-as-radgridview-editor

but nothing for Winforms PropertyGrid.

How would I get the following to appear as a checked drop down editor inside a property grid in winforms?


using CommunityToolkit.Mvvm.ComponentModel;

namespace ProjectXYZ.Model.Enums;

public enum BroadcastPlanEnum
{
    Plan1, Plan2, Plan3, Plan4, Plan5, Plan6
}

public sealed partial class BroadcastPlanActive : ObservableObject
{
    [ObservableProperty]
    private BroadcastPlanEnum broadcastPlan;

    [ObservableProperty]
    private bool selected;
}

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Oct 2022
1 answer
215 views

I am not having any luck finding a way to adjust the height of status string on my form.

 

TIA for any help

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Oct 2022
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?