Telerik Forums
UI for WinForms Forum
1 answer
154 views

Dear all,

does anyone know how to change the BackColor ofthe RadDataEntry ValidationPanel.

I have tried various ways like setting it up at design time in Visual Studio,

or just before showing it at run time

                dataEntry.ValidationPanel.BackColor = Color.PapayaWhip;
                dataEntry.ShowValidationPanel = true;

and also via some event such as

  private void rdeDynamicInput_Initialized(object sender, EventArgs e)
    {
        ValidationPanel vpanel = (sender as RadDataEntry).ValidationPanel;
        if(vpanel != null) vpanel.BackColor = Color.PapayaWhip;
    }

Thanks for your answer

 
 
Maria
Telerik team
 answered on 09 Sep 2022
1 answer
185 views

Hello, 

 

I'd like to know if it is possible to insert rotated text into TableCell (like in the attached image - orange part of table).

I read many forums about this problem, found only one solution - https://www.telerik.com/forums/rotate-text-in-table-cell

The problem is, this custom class is implemented for Telerik.Windows libraries, I'm using Telerik.Winforms.

 

Thanks,

Martin.

Dimitar
Telerik team
 answered on 09 Sep 2022
2 answers
327 views

Is it possible to add a Combo Box or a MultiColumnComboBox to a Task Dialog?

If so, how would I do that?

Maria
Telerik team
 answered on 09 Sep 2022
1 answer
203 views

So I want the user to choose a time with an interval of 15 mins, I disabled key presses because their is no proper way to handle it to round up to the nearest 15 mins.

Anyways my issue is that I tried using this setup so that the user can easily pick 15 mins interval

      this.ReturnTimePicker.Step = 15;
      this.ReturnTimePicker.TimeTables = Telerik.WinControls.UI.TimeTables.HoursAndMinutesInOneTable;

The result looks like this

So ok, probably a bug or 15 mins is not supported because of how many the choices would be.

So now I decided just to use the 2 tables instead of 1.


  this.ReturnTimePicker.Step = 15;
  this.ReturnTimePicker.TimeTables = Telerik.WinControls.UI.TimeTables.HoursAndMinutesInTwoTables;

The result is

It technically works and it's great but as you can see the Minutes is hidden, I need to drag the popup so it opens up properly.

I don't want my users to do that every time, so I want the control to be already expanded fully

Any fixes or alternatives on this issues? 

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 09 Sep 2022
1 answer
160 views

Hi ,

I need to create RadContextMenuManager programmatically in a "base" RadForm ( wich is inherited by other Forms Classes).

I don't want to add it with the designer.

It's possible?

If i add a property RadContextMenuManager, i cannot see this.RadContextMenu .

Alessandro

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 09 Sep 2022
1 answer
144 views

Can I add a textbox on the map filled in a color of my choice just like in the attached photo ?

 

 
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 08 Sep 2022
1 answer
135 views

Hello community!!!

Every time I click on a RadDropDownList I get this message into my debug output window:

The thread 0x588c has exited with code 0 (0x0).
The 0x588c changes every time.

Any idea why is this happening? Is this a normal behavior of RadDropDownList or something?

Thank you for your time!!!
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 08 Sep 2022
1 answer
177 views
I'm populating the RadDataGridView via setting up the columns, then suppling an array of objects for each row I need to add. I can't use a bound grid as we need columns that are not actual values of the object (for example View/Edit buttons that then open the record for the user). I cannot run this in a virtual grid as we are using the grouping functionality to allow users to organize the data. Currently populating the grid takes over half the time of the process. Anyone have additional suggestion for things to try?
 public void AdvancedRowsPopulation(IList<object[]> rows, bool doReset = true)
        {
            var tmr = System.Diagnostics.Stopwatch.StartNew();
            radGridView1.BeginUpdate();
//Have to reset the columns so the object[] matches up again
            string settings = GetGridXml();
            SetGridToXML(BaseGridSettingsXML);
            DetachColumnListeners();
            tmr.Stop();
            Log.Info($"Grid to default took {tmr.ElapsedMilliseconds / 1000.0}s.");

            tmr = System.Diagnostics.Stopwatch.StartNew();
            if (doReset)
            {
                radGridView1.Rows.Clear();
                cachedRows = new List<object[]>();
                lastDataSet = new DataTable();
                foreach (var col in radGridView1.Columns) lastDataSet.Columns.Add(col.HeaderText);
            }
            for (int y=0;y<rows.Count;y++)
            {
                var row =rows[y];
                radGridView1.Rows.Add(row);
                lastDataSet.Rows.Add(row);
            }
            lblDataCount.Text = radGridView1.Rows.Count.ToString();
            tmr.Stop();
            Log.Info($"Grid Row Population took {tmr.ElapsedMilliseconds / 1000.0}s.");

            tmr = System.Diagnostics.Stopwatch.StartNew();
            BaseGridSettingsXML = GetGridXml();
//Set grid back to what the user had last seen
            SetGridToXML(settings);

            radGridView1.EndUpdate();
            tmr.Stop();
            Log.Info($"Grid to user's layout took {tmr.ElapsedMilliseconds / 1000.0}s.");
        }

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 07 Sep 2022
1 answer
167 views


hello, I want to show a form in settings pane, but the form is much larger, so  I need to resize it . But

radDiagram1.DiagramElement.SettingsPane.Size doesn't work. How can I make this work ? Thanks

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 06 Sep 2022
1 answer
161 views

Hello,

i am using the mdi functionality in my winforms app. If i open a childform in maximized state, the text of the childform will appear in the text of the parent mdi form. How can i disable this so that the text of the parent mdi form will always stay the same?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 06 Sep 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
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?