- Home
- Forum
- Xamarin.Forms
- Center icon on a button
Center icon on a button
Hi,
Jiri
How can I center an icon on the SfButton? I intend to use circle button with image only, no text. Something like the circle button at the bottom of this page: https://www.syncfusion.com/xamarin-ui-controls/button
SfButton provides ImageAlignment property but it can be either Start or End.
Any way how to center the icon?
thanks
Jiri
SIGN IN To post a reply.
12 Replies
BK
Bharathiraja K
Syncfusion Team
April 5, 2019 06:31 AM UTC
Hi Jiri Matejka,
Query: How can I center an icon on the SfButton?
Your requirement can be achieved by using Content property of SfButton. We have prepared the sample using Image content with center alignment of circle in SfButton and it can be downloaded from below link
Code Snippet [XAML]:
|
<SyncfusionButtons:SfButton HorizontalOptions="Center" VerticalOptions="Center" BorderWidth="0" Grid.Row="0" Grid.Column="1" IsCheckable="true" WidthRequest="40" HeightRequest="40" CornerRadius="20"> <SyncfusionButtons:SfButton.Content> <Image Source="wow.png" HeightRequest="20" WidthRequest="20" HorizontalOptions="Center" VerticalOptions="Center"/> </SyncfusionButtons:SfButton.Content> </SyncfusionButtons:SfButton> |
Image Alignment is used for aligning the Image along with Button's Text. For more reference, please refer the our online help document below here.
Please let us know, if you have any query,
Regards,
Bharathi.
JM
Jiri Matejka
April 5, 2019 02:13 PM UTC
Works perfectly, thanks for your answer!
Jiri
HM
Hemalatha Marikumar
Syncfusion Team
April 8, 2019 10:07 AM UTC
Thanks for your update.
We gald to know that given solution has been worked fine.Please let us know if you have any other queries.
Regards,
Hemalatha M.
JR
Jassim Rahma
September 29, 2019 12:59 PM UTC
When using SfButton.Content, how can I reach the Image control inside the SfButoon from the code behind to change the Image Source for example at run time?
JR
Jassim Rahma
September 29, 2019 02:12 PM UTC
This is working for me
var stringInThisCell22221 = ((SfButton)sender).Content as Grid;
Image imagebutton = stringInThisCell22221.Children[0] as Image;
imagebutton.Source = "Favorite.png";
Thank you
MK
Muneesh Kumar G
Syncfusion Team
September 30, 2019 12:45 PM UTC
Hi Jiri Matejka,
Glad that the issue has been resolved and please get back to us if you need any other assistance.
Thanks,
Muneesh Kumar G.
JR
Jassim Rahma
September 30, 2019 04:11 PM UTC
I have one more question here please...
Attachment: ImageButton_4ac6c31f.zip
In the latest version(s) of SfButton, is it possible to use to use center icon without having to use SfButton's Content?
What I want to achieve is an button acting like an icon, something like the attached screenshot as an example.
Attachment: ImageButton_4ac6c31f.zip
MK
Muneesh Kumar G
Syncfusion Team
October 1, 2019 07:23 AM UTC
Hi Jassim,
We have analyzed and achieved your requirement by using the ShowIcon property of SfButton. Please refer the below code.
Code snippet [XAML]:
|
<syncfusion:SfButton x:Name="iconButtonLeft"
ShowIcon="True"
BackgroundColor="Transparent"
ImageSource="ImageButton.png"
WidthRequest="50"
HeightRequest="50"
CornerRadius="40">
</syncfusion:SfButton>
|
Screenshot:
Note – Please give the background color of image as the button’s background.
Please get back to us for further details
Thanks,
Muneesh Kumar G.
JR
Jassim Rahma
October 4, 2019 01:32 AM UTC
Thanks
GR
Geetha Rajendran
Syncfusion Team
October 4, 2019 12:48 PM UTC
Hi Jassim,
Thanks for the update. Please let us know if you need any further assistance.
Thanks,
Geetha R.
JR
Jassim Rahma
October 5, 2019 01:44 AM UTC
Hi,
Sorry, I am back... One more question please..
Is it possible now to have the below button without a Button Content? I mean just by positioning the image and text?.
HM
Hemalatha Marikumar
Syncfusion Team
October 7, 2019 09:23 AM UTC
Hi Jassim,
You can achieve your requirement by using the ImageAlignment property of SfButton. Please refer the below code.
Code snippet [XAML]:
You can achieve your requirement by using the ImageAlignment property of SfButton. Please refer the below code.
Code snippet [XAML]:
|
<syncfusion:SfButton x:Name="iconButtonLeft"
ShowIcon="True"
BackgroundColor="Transparent"
ImageSource="ImageButton.png"
Text="Save"
TextColor="Red"
ImageAlignment="Top"
CornerRadius="40">
</syncfusion:SfButton> |
We have prepared the sample which can be available for downloading in below
Sample Link – https://www.syncfusion.com/downloads/support/forum/143792/ze/143792-sample1023641348.zip
Sample Link – https://www.syncfusion.com/downloads/support/forum/143792/ze/143792-sample1023641348.zip
Screenshot:
Please get back to us for further assistance.
Regards,
Hemalatha M.
Hemalatha M.
SIGN IN To post a reply.
- 12 Replies
- 6 Participants
-
JM Jiri Matejka
- Apr 4, 2019 08:37 PM UTC
- Oct 7, 2019 09:23 AM UTC