5,380 questions
Hello,
Welcome to Microsoft Q&A!
- You set
x:name
asbtn2
on both two buttons , which isbtn1
? Do you meanSfButton
? - Which platform did you test on ? iOS ,Android ,UWP ? If it is iOS and UWP/WPF , you need additional step to use
SfButton
, check here . For example , in iOS you need to init the renderer in AppDelegate . public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
Syncfusion.XForms.iOS.Border.SfBorderRenderer.Init();
Syncfusion.XForms.iOS.Buttons.SfButtonRenderer.Init();
return base.FinishedLaunching(app, options);
}
Thank you.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.