or
<
telerik:RadSlider
Grid.Row
=
"3"
Grid.Column
=
"0"
Grid.ColumnSpan
=
"2"
Margin
=
"25,0,25,10"
Value
=
"{Binding SlectedTimeSpan}"
VerticalAlignment
=
"Bottom"
Minimum
=
"0"
Maximum
=
"24"
TickFrequency
=
"8"
TickPlacement
=
"BottomRight"
ClipToBounds
=
"False"
IsSnapToTickEnabled
=
"True"
>
<
telerik:RadSlider.TickTemplate
>
<
DataTemplate
>
<
StackPanel
ClipToBounds
=
"False"
>
<
Ellipse
Width
=
"5"
Height
=
"5"
Fill
=
"Black"
HorizontalAlignment
=
"Center"
/>
<
TextBlock
Text
=
"{Binding StringFormat=+{0} Std.}"
HorizontalAlignment
=
"Center"
/>
</
StackPanel
>
</
DataTemplate
>
</
telerik:RadSlider.TickTemplate
>
</
telerik:RadSlider
>
<
telerik:RadRibbonGroup Header="Test2" Width="300">
<
telerik:RadComboBox
ItemsSource
=
"{Binding Items}"
SelectedItem
=
"{Binding SelectedItem}"
DisplayMemberPath
=
"Name"
IsFilteringEnabled
=
"True"
TextSearchMode
=
"Contains"
ClearSelectionButtonVisibility
=
"Visible"
ClearSelectionButtonContent
=
"Remove"
>
<
telerik:RadComboBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
VirtualizingStackPanel
/>
</
ItemsPanelTemplate
>
</
telerik:RadComboBox.ItemsPanel
>
</
telerik:RadComboBox
>
<
telerik:RadButton
Content
=
"Export"
Height
=
"40"
Width
=
"50"
Command
=
"{Binding ExportCommand, Source={StaticResource context}}"
CommandParameter
=
"{Binding}"
/>
<
telerik:RadButton
Content
=
"Print"
Height
=
"20"
Width
=
"50"
Command
=
"{Binding PrintCommand, Source={StaticResource context}}"
CommandParameter
=
"{Binding}"
/>