Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
Created by: Vaibhav
Comments: 1
Category: Button
Type: Feature Request
4
Implement a component that can be used as button and can host templated content.
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
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>


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";
}

 

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: 26 Feb 2024 16:02 by ADMIN
I want to style button with mouse over like in css.