
Hi
I'm using button with material theme but default animation is very quickly, So I want to change animation duration to slow.
please help me, thanks
Hello,
I'm developing a new app using telerik radwizard, using the example found at
https://docs.telerik.com/devtools/wpf/controls/radwizard/features/pages
However, when i try to run my application, i get an empty window (see image in attached filed)
I don't know what I'm doing wrong, can someone help me?
Source code bellow:
<Window x:Class="MainWindow.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" xmlns:wizard="clr-namespace:Telerik.Windows.Controls.Wizard assembly=Telerik.Windows.Controls.Navigation" Title="MainWindow" WindowState="Normal" WindowStartupLocation="CenterScreen" WindowStyle="None" Background="#dee3e9"> <telerik:RadWizard x:Name="radWizard" > <telerik:RadWizard.WizardPages> <telerik:WizardPage Content="My Wizard Page Content" SideHeaderWidth="100" HeaderHeight="100"> <telerik:WizardPage.HeaderTemplate> <DataTemplate> <Image Source="Images/BrandMark_Telerik_Black.png" Width="200" Height="100" /> </DataTemplate> </telerik:WizardPage.HeaderTemplate> <telerik:WizardPage.SideHeaderTemplate> <DataTemplate> <TextBlock Text="My Side Header" /> </DataTemplate> </telerik:WizardPage.SideHeaderTemplate> <telerik:WizardPage.FooterTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <telerik:RadButton Content="Back" Width="70" Height="25" Command="wizard:RadWizardCommands.MoveCurrentToPrevious" CommandParameter="{Binding}" /> <telerik:RadButton Content="Next" Width="70" Height="25" Command="wizard:RadWizardCommands.MoveCurrentToNext" CommandParameter="{Binding}" /> </StackPanel> </DataTemplate> </telerik:WizardPage.FooterTemplate> </telerik:WizardPage> </telerik:RadWizard.WizardPages> </telerik:RadWizard></Window>Hi,
I would like to create and use a converter to change the background of a single selected button among the three buttons available. I don't want to handle a click event of the buttons and handle it from code behind and so tried different ways to create the converters, however it didn't work. Below I am providing a sample of my scenario. Any help would be greatly appreciated. Thank you.
<StackPanel Grid.Row="0" HorizontalAlignment="Center" x:Name="FirstRowControl" Orientation="Horizontal" Margin="232,0,233,0">
<telerik:RadButton Name="btn1" FontWeight="SemiBold" Margin="5" Content="Button 1" HorizontalAlignment="Left" VerticalAlignment="Top" Width="120" Height="25" BorderBrush="Black" Command="{Binding UpdateTabCommand}" >
<telerik:RadButton.CommandParameter>
<models:Tabs>Button1</models:Tabs>
</telerik:RadButton.CommandParameter>
</telerik:RadButton>
<telerik:RadButton Name="btn2" FontWeight="SemiBold" Margin="5" Content="Button 2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="100" Height="25" BorderBrush="Black" Command="{Binding UpdateTabCommand}" >
<telerik:RadButton.CommandParameter>
<models:Tabs>Button2</models:Tabs>
</telerik:RadButton.CommandParameter>
</telerik:RadButton>
<telerik:RadButton Name="btn3" FontWeight="SemiBold" Margin="5" Content="Button 3" HorizontalAlignment="Left" VerticalAlignment="Top" Width="180" Height="25" BorderBrush="Black" Command="{Binding UpdateTabCommand}" >
<telerik:RadButton.CommandParameter>
<models:Tabs>Button3</models:Tabs>
</telerik:RadButton.CommandParameter>
</telerik:RadButton>
</StackPanel>
Code in the VM:
public DelegateCommand<Tabs?> UpdateTabCommand
{ get; }
public Tabs SelectedTab
{
get { return base.GetProperty<PedpTabs>(defaultValueFactory: () => Tabs.Button1); }
set { base.SetProperty(value); }
}
public enum Tabs
{
Button1,
Button2,
Button3
}
public ClassVM()
{
UpdateTabCommand = new DelegateCommand<Tabs?>(OnChangeTabExecute);
}
private void OnChangeTabExecute(PedpTabs? selectedTab)
{
this.SelectedTab = selectedTab ?? Tabs.StateChanges;
}
protected override void OnPropertyChanged(string propertyName)
{
base.OnPropertyChanged(propertyName);
switch (propertyName)
{
case nameof(SelectedTab):
OnTabChanged();
break;
}
}
private void OnTabChanged()
{
switch (SelectedTab)
{
case Tabs.Button1:
MessageList = Messages2080;
break;
case Tabs.Button2:
MessageList = Messages2088;
break;
case Tabs.Button3:
MessageList = Messages2010;
break;
}
}
Thanks, Chand



Hi, I have a hierarchy that looks something like this:
<RadLayoutControl>
<LayoutGroup>
<LayoutExpanderGroup>
<SomeControl/>
</LayoutExpanderGroup>
<LayoutExpanderGroup>
<RadGridView/>
</LayoutExpanderGroup>
</LayoutGroup>
</RadLayoutControl>
My RadGridView has many columns and rows and so causes the entire <RadLayoutControl> to scroll. Is it possible to configure this view so that only the <LayoutExpanderGroup> that contains the <RadGridView> will scroll?
Any help would be appreciated.

Hi,
I'm using the CloudUpload in my application, and I was wondering if there was anyway to update the tooltip language resource of the RadCloudUploadListItem Close Button (I joined a screenshot of the tooltip I'm talking about). I wasn't able to find it in the xaml style template.
Could someone help me with this issue?
Thank you,

I want to hide only the horizontal or vertical scrollbar. Is that possible ?
The only solution I found now is the following style :
<Style TargetType="telerik:PanZoomBar"> <Setter Property="Visibility" Value="{Binding Customization.ChartZoomMode, Converter={StaticResource ChartScrollbarVisibilityConverter}}"/> </Style>The problem here is that it is hiding both Scrollbars. Is there a option where I can decide which one I want to hide ?
How can I use correctly the above xaml in code behind ?
This is not working :
return new RadCartesianChart { //Resources = new ResourceDictionary() //{ // {"HideScrollBarStyle", new Style(typeof(PanZoomBar)) // { // Setters = // { // new Setter() // { // Property = ContentControl.VisibilityProperty, // Value = Visibility.Collapsed, // } // } // } // } //}, HorizontalAxis = new CategoricalAxis() { LabelFitMode = AxisLabelFitMode.Rotate, PlotMode = hasBarSeries ? AxisPlotMode.BetweenTicks : AxisPlotMode.OnTicks, Title = Customization.XAxisName?.ToUpper(), SmartLabelsMode = AxisSmartLabelsMode.SmartStep , LabelTemplate = new DataTemplate() { VisualTree = xAxisFormat, }, //GapLength = 0.15, }, VerticalAxis = this.HasMultipleAxis ? null : GetYAxis(), SmartLabelsStrategy = new ChartSmartLabelsStrategy() { ShouldMinimizeConnectorConflicts = true, },.................

