Telerik Forums
UI for WinForms Forum
5 answers
408 views
I am formatting child rows in a hierarchical grid based on information contained in one of the columns. For example, if a column "Quantity" contains a number below a certain value, I change the RowElement.BackColor to a specific color. I am doing this in the CellFormatting event and it works well. Some rows will be colored and some will not depending on the value of that cell.

Now I would like to be able to format the parent to have a specific BackColor if any of its Child Rows has been formatted, i.e. contains a value under the indicated value.

I cannot find a way to access the Parent Row in a way that I can format it once I determine that the child row meets the condition for formatting.
Stefan
Telerik team
 answered on 30 Jun 2014
1 answer
163 views
Hello Telerik team,

What is the redistribution process for DPL libraries? It seems that there are based on WPF, meaning that ilmerge is not an option.

Since the documentation does not say anything about this, how Telerik UI for WinForms based applications are going to handle and destribute these dlls?

Thank you
Peter
Telerik team
 answered on 30 Jun 2014
6 answers
332 views
The .NET PropertyGrid does not support custom sorting for the categories:
http://social.msdn.microsoft.com/Forums/en-US/winformsdesigner/thread/80297116-f59e-452d-80ca-687f1c5429f2/

Reading about RadPropertyGrid and performing some testing, it seems your control doesn't support this either :(
http://www.telerik.com/help/winforms/propertygrid-features-grouping.html

I want to sort the categories using custom data. E.g.
> "Mini" (Order = 0)
...
> "Small" (Order = 1)
...
> "Large" (Order = 2)
...
> "Extra Large" (Order = 3)
...

"Extra Large" should not come before "Mini". You get the idea!
Ivan Petrov
Telerik team
 answered on 30 Jun 2014
7 answers
711 views
Hi there,

We're using Q1 2012 and have a small problem with the RadButton and it's font.
We've set the font to "Segoe UI; 12pt" at design time. And first it's working fine. But if the button is clicked, the font size seems to be smaller (I suspect it's 8,25 pt) than before.
After debugging I just can say, that the font name and the font size are still "Segoe UI;12pt" but the appearance is different.

Is there anything I can do about this?
Thanks
Stefan
Telerik team
 answered on 30 Jun 2014
8 answers
398 views
Hi,

I want to display a hand cursor for my first column in RadGridView. Unfortunately there's no Cursor property. What can I use here?
      private void rgvOrders_CellFormatting(object sender, CellFormattingEventArgs e) 
      { 
         if (e.CellElement.ColumnIndex == 0) 
         { 
            if (!e.CellElement.Font.Underline) 
            { 
               e.CellElement.Font = new Font(e.CellElement.Font, FontStyle.Underline); 
               e.CellElement.ForeColor = Color.Blue; 
               // I want something like this 
               // e.CellElement.Cursor = Cursors.Hand; 
            } 
         } 
      } 
 

Regards
Martin


Rawad
Top achievements
Rank 2
 answered on 26 Jun 2014
4 answers
691 views
What we are trying to do is provide our users with a progress bar that changes from green to yellow, and yellow to red at predetermined values of the 'Value1' property. I know in another thread you mentioned that you would add a 'ProgressBarColor' property for the 'Value1' and 'Value2' properties, but is there any other way to do it outside of theming?  We would love to avoid having to create and switch between multiple themes.
Is there any way to programmatically access the FillPrimitive inside of the RadProgressBarElement?

Thanks in advance.
Nazmi
Top achievements
Rank 1
 answered on 26 Jun 2014
15 answers
610 views
i am getting only null and not null filters on a datetime column and price column of double datatype
why is it so?
i want other filters too.
plz help
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Jun 2014
1 answer
374 views
Hi;

In the Last Update of UI for WinForms you have change the color of some control when enabled is false using VisualStudio2012Light. They are with the black background and dark gray forecolor and doesn't look good

You can see it in the Theme Viewer. I do not know if it is an error or have changed for some reason but I do not like change.

Can I change the color without having to edit the theme?

Regards!
Ivan Petrov
Telerik team
 answered on 26 Jun 2014
1 answer
222 views
Hi! 
 I'm creating a dashboard with some charts, when I requested to pie chart show your values, the category legend appears duplicated. I'd like know why occurs it?

listaObj = 6 records.

private void GraficoReceitaPorPlano(IList<object> listaObj)
       {          
           this.grfPieReceitaAlunoPorPlano.Series.Clear();
           this.grfPieReceitaAlunoPorPlano.AreaType = ChartAreaType.Pie;
           this.grfPieReceitaAlunoPorPlano.ShowTitle = true;
           this.grfPieReceitaAlunoPorPlano.Title = "Receita de Alunos Por Plano";
           this.grfPieReceitaAlunoPorPlano.ChartElement.TitlePosition = TitlePosition.Top;
           this.grfPieReceitaAlunoPorPlano.ChartElement.TitleElement.TextAlignment = ContentAlignment.MiddleCenter;
           this.grfPieReceitaAlunoPorPlano.ShowLegend = true;           
           this.grfPieReceitaAlunoPorPlano.ChartElement.LegendElement.TitleElement.Text = "Plano";
           this.grfPieReceitaAlunoPorPlano.ChartElement.LegendElement.TitleElement.TextAlignment = ContentAlignment.MiddleCenter;
           this.grfPieReceitaAlunoPorPlano.ShowToolTip = true;      
 
           PieSeries _pie = new PieSeries();
           foreach (object[] _obj in listaObj)
           {               
               double _valor = (double)ValidarCampoNumerico.TryDecimal(_obj[4].ToString());
               PieDataPoint _point = new PieDataPoint(_valor, _obj[2].ToString());
               _point.Label = _obj[2];               
               _pie.DataPoints.Add(_point);
           }
           //_pie.ShowLabels = true;
           _pie.LabelMode = PieLabelModes.Horizontal;        
           this.grfPieReceitaAlunoPorPlano.Series.Add(_pie);
       }
Ivan Petrov
Telerik team
 answered on 26 Jun 2014
2 answers
133 views
Hi,
I'm using the "Ribbon Bar" element but when I click on another tab (Tabelas in blue), the "Coded UI Test Builder" identifies only the buttons that are on the first tab (Financeiro in red), although not visible. 

this makes my Coded UI test does not work to find the correct buttons in the correct table, already enabled the Coded UI for True 

As you can see from the attached file it finds the button, however this is not the tab button (Tabelas in blue) is the Tab (​​Financeiro in red). 

What could I do to solve this problem? 
George
Telerik team
 answered on 26 Jun 2014
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
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
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
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
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
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?