Unplanned
Last Updated: 25 Mar 2024 15:31 by Sean
Created by: Vaibhav
Comments: 1
Category: Button
Type: Feature Request
2
Implement a component that can be used as button and can host templated content.
Completed
Last Updated: 26 Feb 2024 16:02 by ADMIN
I want to style button with mouse over like in css.
Duplicated
Last Updated: 21 Feb 2024 11:54 by ADMIN
Created by: Hanoch
Comments: 1
Category: Button
Type: Feature Request
1
I want hover on Telerik button like in CSS.
Completed
Last Updated: 15 Mar 2023 11:32 by ADMIN
Release 5.1.0
When using BackgroundImage and CornerRadius on Android, the downscaled images appear as blurred background and the corners seem pixelated.
Completed
Last Updated: 15 Mar 2023 11:30 by ADMIN
Release 5.1.0

Setting Text property of RadButton like this:

this.myButton.Text = "4" + Environment.NewLine + "Totals Files";

And applying HorizontalContentAlignment to "Center" leads to different result on Android and Windows:

Completed
Last Updated: 15 Mar 2023 11:30 by ADMIN
Release 5.1.0
Created by: John
Comments: 0
Category: Button
Type: Bug Report
2

Background property is not applied on Android and WinUI. On Mac and iOS works as expected.

 <telerik:RadButton x:Name="button" Text="hello telerik button">
                <telerik:RadButton.Background>
                    <LinearGradientBrush EndPoint="0,1">
                        <GradientStop Offset="0.0" Color="Violet" />
                        <GradientStop Offset="1.0" Color="DarkRed" />
                    </LinearGradientBrush>
                </telerik:RadButton.Background>
 </telerik:RadButton>


Won't Fix
Last Updated: 02 Mar 2023 10:10 by ADMIN

BackgroundColor is not applied property when DynamicResource is used and button enabling state is changed

<Style TargetType="telerik:RadButton" x:Key="MyTelerikButtonStyle">
            <Setter Property="TextColor" Value="{DynamicResource MyPrimaryColor}" />
            <Setter Property="BackgroundColor" Value="{DynamicResource MySecondaryColor}" />
            <Style.Triggers>
                <Trigger TargetType="telerik:RadButton" Property="IsEnabled" Value="false" >
                    <Setter Property="BackgroundColor" Value="Gray" />
                </Trigger>
            </Style.Triggers>
</Style>

WORKAROUND:

Use StaticResource:

 <Setter Property="TextColor" Value="White" />
 <Setter Property="BackgroundColor" Value="Green" />

Completed
Last Updated: 10 Nov 2022 15:38 by ADMIN
Release 4.0.0

When I try to change the background image on a button click, the image is not changed

<telerik:RadButton Grid.Row="6" BackgroundImage="image.png" VerticalOptions="Center" HorizontalOptions="Center" WidthRequest="100" HeightRequest="100" Clicked="RadButton_Clicked"/>

 

private void RadButton_Clicked(object sender, EventArgs e)
{
	(sender as Telerik.Maui.Controls.RadButton).BackgroundImage = "image2.png";
}