or
							The RedComboBox displaying list of items for selection and this list will be empty to start with. If this list is empty, user should see an empty drop down so that the User knows there is nothing to select. With my code below, I just see a small 2 pixel line below combo, this give an impression to user that something is wrong with application. If you use windows provided ComboBox then it will a empty dropdown and we want the same behavior from RedComboBox.
How can I enable dropdown even if there are no items in the list?
<RadComboBox   HorizontalAlignment="Left"   Margin="1,1,0,1"   VerticalAlignment="Center"   Name="comboname"    SelectedItem="{Binding Path=Item, Mode=TwoWay}"   ItemsSource="{Binding Path= ItemList}"   IsReadOnly="False"   EmptyText=" - select an item - "/>
Do we have a sample include DragDrop,Contextmenu and Custom Appt( edit dilaog) ? Also include Custom group?
Wenjie
<telerik:RadChart x:Name="Chart_Issure_Long" ItemsSource="{Binding IssureLongList}" telerik:StyleManager.Theme="{DynamicResource MetroStyle}">                    <telerik:RadChart.SeriesMappings>                        <telerik:SeriesMapping>                            <telerik:SeriesMapping.SeriesDefinition>                                <telerik:PieSeriesDefinition LegendDisplayMode="DataPointLabel" ShowItemToolTips="True" ItemLabelFormat="#%{p}" ItemToolTipFormat="#LEGENDLABEL{C4} #Y{C2}" ShowItemLabels="True" LabelOffset="1.2" />                            </telerik:SeriesMapping.SeriesDefinition>                            <telerik:SeriesMapping.ItemMappings>                                <telerik:ItemMapping DataPointMember="YValue" FieldName="IssurePosSummary.MarketCapitlization" />                                <telerik:ItemMapping DataPointMember="XCategory" FieldName="IssurePosSummary.IssureName" />                                <telerik:ItemMapping DataPointMember="LegendLabel" FieldName="IssurePosSummary.IssureName" />                            </telerik:SeriesMapping.ItemMappings>                        </telerik:SeriesMapping>                    </telerik:RadChart.SeriesMappings>                </telerik:RadChart>