I am evaluating the DataGrid you offer and I am trying to determine if it is possible to have multiple column headers on the grid. In other words the user can stack columns on top of other columns when reordering. Thank you
Keith Williams
<telerik:RadGridView.Columns> |
... |
<telerik:GridViewDataColumn Header="ID" IsReadOnly="True" DataMemberBinding="{Binding Path=Id}" |
DataType="{x:Type System:Int32}" /> |
<telerik:GridViewComboBoxColumn Header="Items" |
DataType="{x:Type local:MyItem}" |
ItemsSource="{Binding ElementName=MyWindow, Path=ViewModel.AvailableItems}" |
DataMemberBinding="{Binding Path=SelectedItem}" |
DisplayMemberPath="ItemName" |
SelectedValueMemberPath=""/> |
... |
</telerik:RadGridView.Columns> |
<telerik:RadCalendar x:Name="tlrkCalendar" Grid.Row="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Visibility="Visible" DayTemplate="{x:Null}" MonthTemplate="{x:Null}" YearTemplate="{x:Null}" IsTodayHighlighted="False" SelectionMode="Extended">
the problem is that that i receive correctly CalendarButtonType.Day and Year but never CalendarButtonType.Month.
Year -- 01/01/2009 00:00:00
Year -- 01/02/2009 00:00:00
Year -- 01/03/2009 00:00:00
Year -- 01/04/2009 00:00:00
Year -- 01/05/2009 00:00:00
Year -- 01/06/2009 00:00:00
Year -- 01/07/2009 00:00:00
Year -- 01/08/2009 00:00:00
Year -- 01/09/2009 00:00:00
Year -- 01/10/2009 00:00:00
Year -- 01/11/2009 00:00:00
Year -- 01/12/2009 00:00:00
<telerik:RadButton Height="43" Margin="13.015,18,0,0" BorderThickness="1" BorderBrush="Blue" Name="btnMenu" VerticalAlignment="Top" FontSize="20" ClickMode="Press" Click="btnMenu1_Click" HorizontalAlignment="Left" Width="217">
<telerik:RadButton.Effect>
<DropShadowEffect ShadowDepth="5" />
</telerik:RadButton.Effect>
<StackPanel Orientation="Horizontal" Height="32" HorizontalAlignment="Right" VerticalAlignment="Bottom" Width="148.687">
<Image Source="/icons/truck_blue.png" Height="32" Width="32" />
<TextBlock Text="Menu Option1" Foreground="Navy" FontSize="18" Margin="9 0 0 0" />
</StackPanel>
</telerik:RadButton>