| <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>


| <Teltrik:GridViewDataColumn FooterTextAlignment="Right" FooterCellStyle="{DynamicResource FooterCellStyle}" CellStyle="{DynamicResource RightAlignedCellStyle}" Width="120" DataMemberBinding="{Binding UnaTantum,Converter={StaticResource EuroConverter}, ConverterParameter=\{0:c\}}" > |
| <Teltrik:GridViewDataColumn.Header> |
| <StackPanel Margin="30,0,0,0" HorizontalAlignment="Center" Orientation="Vertical" > |
| <TextBlock HorizontalAlignment="Center" Text="Una Tantum"></TextBlock> |
| </StackPanel> |
| </Teltrik:GridViewDataColumn.Header> |
| <Teltrik:GridViewColumn.AggregateFunctions> |
| <telerikData:SumFunction ResultFormatString="{}{0:c}" SourceField="UnaTantum"></telerikData:SumFunction> |
| </Teltrik:GridViewColumn.AggregateFunctions> |
| </Teltrik:GridViewDataColumn> |
| <Style x:Key="FooterCellStyle" TargetType="{x:Type GridView:GridViewFooterCell}"> |
| <Setter Property="FontWeight" Value="Bold"></Setter> |
| </Style> |
