Telerik Forums
UI for WinForms Forum
1 answer
123 views

I have a chart where data  on the X axis is Time based, and on the Y axis is speed based, what is the best way of being able to scale the Speed (Y Axis) to show different units eg kmh, mph, m/s.

Is there a Y axis data scaling property I could set?

Cheers

Toby

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Aug 2023
1 answer
385 views

Hai,
   How to add icon or image on right side of the raddropdowlist  ?
   I am dynamically added dropdowlist via code and i need to add icon on right side of the control  (inside the control) ,In textbox i can add, like this i want to add icon, here i attach screenshot.

Thanks and Regards
Aravind

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Aug 2023
1 answer
983 views

Hi,
     I try to set tooltip for textbox which is disabled , it not showing tooltip, but if the textbox in enabled it showing, Is there any way to show tooltip while it disabled ?

I tried following ways , but not working
in 2nd way i added Windows ToolTip control in that form and set the value for radtexbox, but not working.


       RadTextBoxControl1.Enabled = False
       '1 st way
        RadTextBoxControl1.TextBoxElement.ToolTipText = "This is the tooltip text."
        '2 nd way
        ToolTip1.SetToolTip(RadTextBoxControl1, "This is the tooltip text.")


Pls reply asap
Regards
Aravind
Aravind
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 01 Aug 2023
1 answer
166 views

In my aplication I create a graph with lots of scatter line series. Once created I would like to alter the format of one specific item in the legend to show this in bold fold (or possibly highlight in a different colour).

How is this possible to achieve?

Dinko | Tech Support Engineer
Telerik team
 answered on 31 Jul 2023
1 answer
106 views

Hi ,
When we group by any column by default sorting is applied on that column. I don't need that sorting.

In Below Image You can see I just grouped with 3 columns namely "Internal Id" , "Description" and "IMS Description" and sorting is applied on them automatically I don't want that default sorting behavior.

I just wanted if user want sorting he can sort according to his will but not because of grouping.

Regards,
Shubham Jain

Dinko | Tech Support Engineer
Telerik team
 answered on 31 Jul 2023
2 answers
150 views

That's it. 

Just move the cursor, and the UI focus, to a specific cell.

Trying to implement the behaviour in the find/replace function, when the user clicks on a search result in the list, and the appropriate cell is highlighted.

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
1 answer
99 views

Add a GridViewCheckBoxColumn to the GridView and set its EnableHeaderCheckBox property to true. An exception is caused when the column is hidden and the Readonly property of the GridView is set.

The test code is as follows: Press Btn1 and then Btn2 to trigger an exception.
public partial class RadForm1 : RadForm
{
    private bool flag1 = false;
    private bool flag2 = false;
    private GridViewCheckBoxColumn checkColumn;

    public RadForm1()
    {
        InitializeComponent();
        AddCheckColumn();
        AddButton();

        this.radGridView1.RowCount = 10;
        this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
        this.radGridView1.MasterTemplate.AllowAddNewRow = false;
    }

    private void AddCheckColumn()
    {
        checkColumn = new GridViewCheckBoxColumn();
        checkColumn.Name = "Select";
        checkColumn.HeaderText = "All";
        checkColumn.EnableHeaderCheckBox = true;
        this.radGridView1.Columns.Insert(0, checkColumn);
        this.radGridView1.HeaderCellToggleStateChanged += RadGridView1_HeaderCellToggleStateChanged;

        this.radGridView1.Columns.Add(new GridViewTextBoxColumn("A"));
        this.radGridView1.Columns.Add(new GridViewTextBoxColumn("B"));
    }

    private void RadGridView1_HeaderCellToggleStateChanged(object sender, GridViewHeaderCellEventArgs e)
    {
        MessageBox.Show($"State:{e.State}");
    }

    private void AddButton()
    {
        Button btn1 = new Button();
        btn1.Text = "Btn1";
        btn1.Click += (o, e) =>
        {
            checkColumn.IsVisible = flag1;
            flag1 = !flag1;
        };
        btn1.Location = new Point(5, 5);
        this.Controls.Add(btn1);

        Button btn2 = new Button();
        btn2.Text = "Btn2";
        btn2.Click += (o, e) =>
        {
            if (flag2)
                radGridView1.Hide();
            else
            {
                radGridView1.Show();
                try
                {
                    radGridView1.ReadOnly = flag2;
                }
                catch { }
            }
            flag2 = !flag2;
        };
        btn2.Location = new Point(120, 5);
        this.Controls.Add(btn2);
    }
}

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
1 answer
100 views
Hi,
   Currently i designed in RadRibbonForm, now we want to change to ordinary radform, but when i see controls tab , RadFormConverter control is missing version 2017, is there any way to change the ribbonform to radform ?

Or if i delete ribbon control and show form top bar like minimize, maximize and close icons ?

Pls reply asap

Regards
Aravind
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
1 answer
195 views

I just started using RadPDFViewer and it works well but I have two things that are driving me crazy.

  1. How do I remove the white spacing at the top of the control between the pdf and top of the control.
  2. There is a black border around the PDF itself inside the control that I would like to remove.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
1 answer
128 views

HI,

Is it possible to apply Telerik themes to any of the native (i.e. non-Telerik) Microsoft controls, such as System.Windows.Forms.Button?  This is possible with WPF controls (https://docs.telerik.com/devtools/wpf/styling-and-appearance/stylemanager/common-styling-themes-mscontrols), but I have not found any documentation for doing this with WinForms controls.

Is this possible? 

Thanks!

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
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)
Chart (obsolete as of Q1 2013)
Form
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?