i need to create make my slider dynamic. so i need to change my maximum value for each 5 mins, so am trying to bind my maximum and minimum value(DateTime) from database. here am facing problem,that i cannot bind the values in minimum,maximum and in the textblock, i cant even call the biniding function here, please tel me how to call and bind my values to the slider
<
telerik:RadSlider Minimum="{Binding {StaticResource MinValue}}" Maximum="{Binding {StaticResource MaxValue}}" TickFrequency="1" TickPlacement="BottomRight" IsSnapToTickEnabled="True" Margin="133,175,114,204">
<telerik:RadSlider.TickTemplate>
<DataTemplate>
<StackPanel>
<Ellipse Width="5" Height="5" Fill="Black" HorizontalAlignment="Center"/>
<TextBlock Text="{Binding}" FontSize="10"/>
</StackPanel>
</DataTemplate>
</telerik:RadSlider.TickTemplate>
</telerik:RadSlider>

Hi,
we are using telerik checkboxeditor in our project.
we are adding some text to checkboxeditor.
The background color of Checkboxeditor we are getting is orange.
When we change the back ground color of check box . Only the border of checkbox is getting changed.
I want to change the back ground of text as well which is given to check box.....
Please reply me with a solution to solve this problem

<
<Telerik:RadTreeView x:Name="treeColumns" MinHeight="500" DragEnded="treeColumns_DragEnded"
VerticalAlignment="Top" SelectionMode="Multiple" IsEditable="True" IsDragDropEnabled="True"
ItemTemplate="{StaticResource ItemTemplate}"
ItemsSource="{Binding Converter={StaticResource convWorkflow}}"></Telerik:RadTreeView>
treeColumns.DragEnded +=
new RadTreeViewDragEndedEventHandler(treeColumns_DragEnded);
private void treeColumns_DragEnded(object sender, RadTreeViewDragEndedEventArgs e)
{
int index;
WorkFlow draggedItem = e.DraggedItems[0] as WorkFlow;
WorkFlow targetItem=e.TargetDropItem.DataContext as WorkFlow;
if (draggedItem != targetItem)
{
switch (e.DropPosition)
{
case DropPosition.After:
index = e.TargetDropItem.Index + 1;
break;
case DropPosition.Before:
index = e.TargetDropItem.Index - 1;
break;
case DropPosition.Inside:
index = e.TargetDropItem.Items.IndexOf(draggedItem);
break;
default:
index = -1;
break;
}
}
else
{
index = e.TargetDropItem.Index;
}
draggedItem.SortOrder = index;
DataAccess.ctx.SubmitChanges();
}
Hi everyone,
whit others component suite it is possible, example:
| <Style TargetType="ComboBox" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.ComboBoxKey}}" /> |
| <Style TargetType="TextBox" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.TextBoxKey}}" /> |
| <Style TargetType="PasswordBox" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.PasswordBoxKey}}" /> |
| <Style TargetType="Button" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.ButtonKey}}" /> |
| <Style TargetType="ToolTip" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.ToolTipKey}}" /> |
| <Style TargetType="CheckBox" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.CheckBoxKey}}" /> |
| <Style TargetType="RadioButton" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.RadioButtonKey}}" /> |
| <Style TargetType="ContextMenu" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.ContextMenuKey}}" /> |
| <Style TargetType="ScrollViewer" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.ScrollViewerKey}}" /> |