Telerik Forums
UI for WinForms Forum
9 answers
262 views

Hi there,

I have developed a windows applications in which am using Telerik RAD multicolumn combobox.

FYI. I have used the below code to bind the multicolumn combobox.

       Dim dt As New DataTable
       dt = BindData()
       RadMultiColCombobox.DataSource = dt
       RadMultiColCombobox.DisplayMember = "REG_NUM"
       RadMultiColCombobox.ValueMember = "FORM_ID"
       For i As Integer = 0 To dt.Columns.Count - 1
               RadMultiColCombobox.MultiColumnComboBoxElement.Columns(i).BestFit()
       Next
       RadMultiColCombobox.SelectedIndex = -1

Using the free trail version, the code worked properly for Columns.BestFit() and Selected Index.

But when i have installed the Licensed version of Telerik, same code doesnt work properly. All the columns are getting overlapped and also the SelectedIndex is not showing proper data. Please suggest how can i get the columns bestfit size and also assign proper SeletedIndex value.

Thanks,

Prasad

Deyan
Telerik team
 answered on 01 Mar 2010
1 answer
204 views
Hi... I am using the Q3 2009 version of your WIn controls and I develop in VB.net

I am having a little issue with your multi column combo box, I am not sure the problem is with something that I am doing, or there is an issue with the control itself.

On a form I have several multi column combo boxes, each intending to edit the data on one table; edit fields set using the SelectedValue property.  Each looks up the values from seperate tables; Set using the Datasource, Valuemember, and display member properties of each of the combo boxes.

Of the four multi column combo boxes on the form, one does not behave properly.  It does not  display the proper data (based on the Selected value) but always displays the data from the first record in the datasource. 
I thought I had been doing something wrong, so I added a Microsoft Combo box to the same form and set that similarly to the multi column combo box.  Ran the project and both worked correctly.  Removed the microsoft combo box and the rad multicolum combo box reverted to not displaying the proper value.  I also tried the same with a rad combo box (non multi column) and the same behaviour was observed.  I thought I could just leave the combo on the form and hide it as a workaround but once additional combo is hidden the multi colum combo box stops displaying properly.

I am not sure that I am doing something wrong or if this is a bug.  Could someone assist please?

Thank you

Deyan
Telerik team
 answered on 01 Mar 2010
3 answers
153 views
Hi

Is there anybody who is selling themes or is sharing their Telerik themes for Windows Forms?  We do not the time or resources to make a nice looking theme for our users.

thanks

Deyan
Telerik team
 answered on 01 Mar 2010
5 answers
716 views
I want to allow the user to delete a row but enter data for add and edit in a separate window. I set Allow delete row to true and Allow Edit and Allow Add to false. If I am in the grid and press the delete key, nothing happens and the row changing event is not called. If I right click, I see no option to delete the row. However, I can delete the row programatically via a toolstrip button. Does disabling edit automatically disable delete, even if I've specified otherwise?
Martin Vasilev
Telerik team
 answered on 01 Mar 2010
2 answers
187 views

Hello,

I am not very happy with the month view of the new scheduler.

1. The month view does not show the full month. It shows only 5 weeks. This is not what a user expects when a month view is shown. 

Here is an example code on how to set the weekcount to the correct value:

  // Calculate the necessary weekcount for a month
int weekcount = 5; // Default is 5

// Specialcase with 6 weeks
if ( ( ( NewStartDate.DayOfWeek == DayOfWeek.Saturday ) &&
( DateTime.DaysInMonth( NewStartDate.Year , NewStartDate.Month ) == 31 ) ) ||
( ( NewStartDate.DayOfWeek == DayOfWeek.Sunday ) &&
( DateTime.DaysInMonth( NewStartDate.Year , NewStartDate.Month ) >= 30 ) ) )
weekcount = 6;

// Specialcase with 4 weeks
if ( ( NewStartDate.Month == 2 ) &&
( NewStartDate.DayOfWeek == DayOfWeek.Monday ) &&
( !DateTime.IsLeapYear( NewStartDate.Year ) ) )
weekcount = 4;

This code works fine when the first day of a week is monday. The NewStartDate is a DateTime value and contains the first day of the month to calculate the weekcount e.g. 01/05/2010.  

2. The same problem has the new navigator stepping when the step type is month. It adds just 5 weeks for every month, which is not correct. 

3. When i navigate in the month view i would expect that the first day of the month is in the first row of the displayed month. This is not the case with the radscheduler.

4. In the month view the last row of the month has not the same height as the other rows in the month. This does not look very good.

5. When a day has more appointments than the number of appointments which can be displayed in the month view then there is no visual feedback for the user that there are more appointments for this day. 

6. When i click on a day of the month view and then on the week view or day view of the navigator  i would expect that the scheduler shows the day or week of the clicked day. This is not the case for the radscheduler.

Kind Regards,

Ramius

Ramius
Top achievements
Rank 1
 answered on 28 Feb 2010
3 answers
136 views

I am hoping that I am doing something really stupid here.

Anyway, the Initial rendering of the tabs (when the program loads) looks perfect.
Initial Rendering

But when you switch tabs, it looks like the very bottom most (or top most if the tabs locations was set to 'top') are being drawn incorrectly.
Switch Tab 1
Switch Tab 2

Can somebody explain this? This issue is of relative importance, and must be resolved before we release the final version of the program in May.

Here is the contents of the XML file for the theme.

<?xml version="1.0" encoding="utf-8"?>  
<XmlTheme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ThemeName="RoundedTabBottom">  
  <BuilderRegistrations> 
    <XmlStyleBuilderRegistration> 
      <BuilderData xsi:type="XmlStyleSheet" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
        <PropertySettingGroups> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="Transparent" NumFrames="4" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="-51, 0, 0, 0" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="51, 0, 0, 0" /> 
              </XmlAnimatedPropertySetting> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="214, 221, 234" NumFrames="4" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="-31, 0, 0, 0" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="51, 0, 0, 0" /> 
              </XmlAnimatedPropertySetting> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="Transparent" NumFrames="4" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="-51, 0, 0, 0" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="51, 0, 0, 0" /> 
              </XmlAnimatedPropertySetting> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="225, 231, 239" NumFrames="4" Property="Telerik.WinControls.VisualElement.BackColor" Value="">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="-31, 0, 0, 0" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="31, 0, 0, 0" /> 
              </XmlAnimatedPropertySetting> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.666" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="2" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="0, 0, 0, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabFill" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlAnimatedPropertySetting EndValue="199, 219, 240" NumFrames="4" Property="Telerik.WinControls.VisualElement.BackColor" Value="0, 255, 186, 91">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="20, 0, 0, 0" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="-20, 0, 0, 0" /> 
              </XmlAnimatedPropertySetting> 
              <XmlAnimatedPropertySetting EndValue="224, 225, 217" NumFrames="4" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="0, 234, 243, 253">  
                <Step StepType="Telerik.WinControls.ColorAnimationStep" Value="36, 4, -10, -40" /> 
                <ReverseStep StepType="Telerik.WinControls.ColorAnimationStep" Value="-36, -4, 10, 40" /> 
              </XmlAnimatedPropertySetting> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlAnimatedPropertySetting EndValue="211, 222, 227" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="0, 243, 245, 244" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="226, 212, 168" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="4" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.4931271" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.5051546" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabFill" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.Font" Value="Tahoma, 8.25pt" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="45, 94, 162" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="6, 3, 6, 3" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.UI.TabOffice12Shape" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.UI.TabItem" AutoUnapply="False" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="180, 198, 246" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="180, 198, 246" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.109965637" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="233, 238, 250" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="232, 239, 248" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="3" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="5, -2, 5, 5" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.RoundRectShape|2" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ZIndex" Value="6" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabBaseFill" AutoUnapply="False" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Visibility" Value="Visible" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.BoxStyle" Value="FourBorders" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.LeftColor" Value="149, 189, 231" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.BottomColor" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.RightColor" Value="149, 189, 231" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.TopColor" Value="149, 189, 231" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemBorder">  
                <Condition xsi:type="XmlComplexCondition" BinaryOperator="OrOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="226, 231, 247" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="156, 190, 250" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="146, 176, 216" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="106, 140, 200" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientStyle" Value="Solid" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabBaseBorder" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="231, 239, 249" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Solid" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabFill" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="199, 213, 249" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.666" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="180, 198, 246" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="ControlLightLight" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="2" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Visibility" Value="Visible" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabFill" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.83" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Solid" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="False" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.CustomShape|0,0,320,120:100,0,False,0,0,0,0,0:220,0,True,310,0,230,120,0:320,120,False,0,0,0,0,0:0,120,True,90,120,10,0,0:" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="0, 0, 0, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.AutoSizeMode" Value="Auto" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.StretchHorizontally" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.StretchVertically" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.PositionOffset" Value="0, 5" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.666" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Visibility" Value="Hidden" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabFill" AutoUnapply="False" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Visibility" Value="Hidden" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="158, 173, 210" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientStyle" Value="Solid" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="0, 0, 0, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.Width" Value="1" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemBorder" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ShouldPaint" Value="True" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemBorder" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="191, 219, 254" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RootRadElement.UsePaintCache" Value="False" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.RootRadElement" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="158, 173, 210" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientStyle" Value="Solid" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="270" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="0, 0, 0, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemBorder">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                      <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                    </Condition1> 
                    <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                      <Setting Property="Telerik.WinControls.VisualElement.IsMouseDown" Value="True" /> 
                    </Condition2> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.TabLayoutPanel.ItemsOffset" Value="52" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.TabLayoutPanel.ItemsOverlapFactor" Value="-8" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.TabLayoutPanel.AllTabsEqualHeight" Value="False" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.TabLayoutPanel.TabsPosition" Value="Bottom" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.UI.TabLayoutPanel" AutoUnapply="False" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.5" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RadArrowButtonFill" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="214, 231, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="214, 231, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="173, 199, 239" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="4" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.4536741" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="222, 235, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.4504792" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="ScrollButtonFill" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="146, 176, 216" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="156, 190, 250" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="146, 176, 216" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="106, 140, 200" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientStyle" Value="Linear" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RepeatScrollButtonBorder" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="Navy" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="ScrollButtonArrow" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="4" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientStyle" Value="Linear" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientAngle" Value="90" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.4408946" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.4920128" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 252, 240" Property="Telerik.WinControls.VisualElement.BackColor" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 222, 170" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 252, 240" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="ScrollButtonFill">  
                <Condition xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.VisualElement.ForeColor" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RepeatScrollButtonBorder">  
                <Condition xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="214, 231, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="214, 231, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="173, 199, 239" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="222, 235, 255" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="4" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.4536741" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.4504792" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RadArrowButtonFill" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="146, 176, 216" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="156, 190, 250" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="146, 176, 216" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="106, 140, 200" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="90" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RadArrowButtonBorder" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="(none)" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="DropDownButtonArrowButton" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 252, 240" Property="Telerik.WinControls.VisualElement.BackColor" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 222, 170" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor2" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor3" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 252, 240" Property="Telerik.WinControls.Primitives.FillPrimitive.BackColor4" Value="" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.NumberOfColors" Value="4" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage" Value="0.4408946" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.FillPrimitive.GradientPercentage2" Value="0.4920128" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RadArrowButtonFill">  
                <Condition xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Visibility" Value="Collapsed" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="DropDownButtonBorder" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.VisualElement.ForeColor" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="" /> 
              <XmlAnimatedPropertySetting StartValueIsCurrentValue="False" EndValue="255, 199, 64" Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="RadArrowButtonBorder">  
                <Condition xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.BackColor" Value="179, 191, 211" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.RadTabStripElement.TabsPosition" Value="Bottom" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.RadTabStripElement.ItemsOffset" Value="10" /> 
              <XmlPropertySetting Property="Telerik.WinControls.UI.RadTabStripElement.AllTabsEqualHeight" Value="True" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.UI.RadTabStripElement" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.PositionOffset" Value="0, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabHeadFill" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.Font" Value="Arial, 9.75pt" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="71, 71, 71" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.TextPrimitive.TextAlignment" Value="MiddleCenter" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.PositionOffset" Value="0, 5" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemText" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.Layouts.DockLayoutPanel" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.RadHostItem" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="0, 5, 0, 0" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.Layouts.BoxLayout" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabStripLeftButton" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.UI.RadDropDownButtonElement" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.UI.DropDownEditorLayoutPanel" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.Font" Value="Tahoma, 8.25pt" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="45, 94, 162" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="6, 3, 6, 3" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.UI.TabOffice12Shape" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItem" AutoUnapply="False">  
                <Condition xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.RoundRectShape|2, False, True, False, True" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.ZIndex" Value="-1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.Font" Value="Tahoma, 8.25pt" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="45, 94, 162" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.BorderThickness" Value="2, 2, 2, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadItem.FlipText" Value="False" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItem" AutoUnapply="False">  
                <Condition xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <PropertySettings> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.BoxStyle" Value="FourBorders" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.BottomWidth" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.BottomColor" Value="Transparent" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.LeftColor" Value="149, 189, 231" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.RightColor" Value="149, 189, 231" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.TopColor" Value="149, 189, 231" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Shape" Value="Telerik.WinControls.CustomShape|0,0,320,120:100,0,False,0,0,0,0,0:220,0,True,310,0,230,120,0:320,120,False,0,0,0,0,0:0,120,True,90,120,10,0,0:" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Margin" Value="-20, 0, -20, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientStyle" Value="Solid" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.GradientAngle" Value="270" /> 
              <XmlPropertySetting Property="Telerik.WinControls.VisualElement.ForeColor" Value="158, 173, 210" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor2" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor3" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.ForeColor4" Value="ControlDark" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.AutoSizeMode" Value="FitToAvailableSize" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.Padding" Value="0, 0, 0, 0" /> 
              <XmlPropertySetting Property="Telerik.WinControls.Primitives.BorderPrimitive.Width" Value="1" /> 
              <XmlPropertySetting Property="Telerik.WinControls.RadElement.PositionOffset" Value="0, 5" /> 
            </PropertySettings> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemBorder" AutoUnapply="False">  
                <Condition xsi:type="XmlComplexCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                  <Condition1 xsi:type="XmlSimpleCondition" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.VisualElement.IsMouseOver" Value="True" /> 
                  </Condition1> 
                  <Condition2 xsi:type="XmlSimpleCondition" UnaryOperator="NotOperator" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
                    <Setting Property="Telerik.WinControls.UI.RadTabStripElement.IsSelected" Value="True" /> 
                  </Condition2> 
                </Condition> 
              </XmlClassSelector> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlTypeSelector ElementType="Telerik.WinControls.Layouts.ImageAndTextLayoutPanel" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlClassSelector ElementClass="TabItemImage" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
          <XmlPropertySettingGroup> 
            <Selectors> 
              <XmlClassSelector ElementClass="Separator" /> 
            </Selectors> 
          </XmlPropertySettingGroup> 
        </PropertySettingGroups> 
      </BuilderData> 
      <StylesheetRelations> 
        <RadStylesheetRelation ControlType="Telerik.WinControls.UI.RadTabStrip" ElementType="Telerik.WinControls.RootRadElement" /> 
      </StylesheetRelations> 
    </XmlStyleBuilderRegistration> 
  </BuilderRegistrations> 
</XmlTheme> 
Mike Baldini
Top achievements
Rank 2
 answered on 26 Feb 2010
5 answers
361 views
Hi,

I am having a very frustrating time getting to grips with RadGridView. I was hoping someone could help with the following;

I have a RadGridView with a checkbox in the right most column. I have the following code in the cellclick event;
GridCheckBoxCellElement cell = (GridCheckBoxCellElement)sender;  
 
RadCheckBoxEditor editor = (RadCheckBoxEditor)cell.Children[0];  
 
editor.SaveValue();  
 

 On inspecting the 'editor.value', as expected it either returns true or false depending on the checkbox checked state, however when the editor.SaveValue(); is called I receive an 'Object reference not set to an instance of an object.' error. I want the underlying Data to be immediatley updated as soon as a checkbox is clicked. Has anyone got any ideas?

Thanks!

George


Martin Vasilev
Telerik team
 answered on 26 Feb 2010
0 answers
67 views
I have a datagrid that has a combo box column. Within that column I have about 30 items.  Now when I select the combo box and press a letter on the keyboard it shows me the first item in my combo  that starts with that letter.  The problem is that it pauses for a few seconds before I can press the letter again to get the next value.  Is there a way to speed this up so I can press a letter multiple times quickly to get to the 5 item that starts with that letter?

Thank You
jerry
Top achievements
Rank 1
 asked on 26 Feb 2010
7 answers
553 views
Quarter 1 2009 Controls,  I have added referenes to all Telerik.WinControl.XXX and TelerikCommon and TelerikData but I am getting this error message.  This is an existing WinForms .net 2 application that I am adding some new forms to and I wanted to use the RadGridView control, but I am obviously missing a reference.  What do I need to add?

this.dummy_InventoryTableAdapter.Fill(this.dataSetDummy.Dummy_Inventory); 
foreach (GridViewColumn column in radGridViewInventory.Columns) 
    column.BestFit(); 


Thanks

Error    314    'Telerik.WinControls.UI.GridViewColumn' does not contain a definition for 'BestFit' and no extension method 'BestFit' accepting a first argument of type 'Telerik.WinControls.UI.GridViewColumn' could be found (are you missing a using directive or an assembly reference?) 
Nikolay
Telerik team
 answered on 26 Feb 2010
3 answers
170 views
This appears to be a bug. There is no purpose in the RowValidating during form load, before anything has been entered, and it really messed me up. My row validation checks for required fields. The empty add line will never have any of the required fields, so it will always fail. At that point, I'm stuck on the add line and can't edit or delete any other row. I've gotten around it by skipping row validation on its first call for a new record, but I'm not sure this will entirely solve the problem. What property tells me this is an empty add row?
Jack
Telerik team
 answered on 26 Feb 2010
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
CheckedDropDownList
ProgressBar
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
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
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
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?