Implementing .NET MAUI Button
A comprehensive skill for implementing and customizing the Syncfusion .NET MAUI Button (SfButton) control. The SfButton provides rich customization options including icons, background images, visual states, corner radius, and custom content support.
When to Use This Skill
Use this skill when you need to:
- Install and set up SfButton in a .NET MAUI project
- Create basic or customized buttons with text and icons
- Implement visual states (normal, hovered, pressed, checked, disabled)
- Add background images or custom content to buttons
- Handle button click events
- Create toggle/checkable buttons
- Apply RTL (right-to-left) support
- Implement modern styling with Liquid Glass effects
- Customize button appearance (colors, fonts, borders, padding)
- Troubleshoot button-related issues
Component Overview
The Syncfusion .NET MAUI Button (SfButton) is a custom button control that extends the standard MAUI button with advanced UI customization capabilities:
Key Features:
- Flexible styling: Outline, flat, circle, or icon button types
- Rich content: Icons, background images, and custom views
- Visual states: Built-in support for hover, press, checked, and disabled states
- Modern effects: Liquid Glass support for contemporary UI design
- Accessibility: RTL support and keyboard navigation
- Easy integration: Simple XAML or C# implementation
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
When to read: Installation, initial setup, first-time implementation
- NuGet package installation (
Syncfusion.Maui.Buttons)
- Handler registration in
MauiProgram.cs
- Basic button implementation in XAML and C#
- Adding button icons with
ImageSource and ShowIcon
- Setting background images with
BackgroundImageSource
- Minimal working examples
Customization and Styling
📄 Read: references/customization.md
When to read: Appearance customization, styling buttons, layout control
- Text customization (color, size, font, alignment)
- Background color and border styling
- Corner radius and padding adjustments
- Size control (width, height)
- Image width and positioning
- Alignment options (horizontal, vertical)
- Complete styling examples
Visual States
📄 Read: references/visual-states.md
When to read: State-based styling, hover effects, toggle buttons, interactive feedback
- Visual state overview (Normal, Hovered, Pressed, Checked, Disabled)
- Implementing VisualStateManager
- Creating checkable/toggle buttons with
IsCheckable
- Customizing appearance for each state
- State transition handling
- Complete state management examples
Advanced Features
📄 Read: references/advanced-features.md
When to read: RTL support, modern effects, custom content, events, migration
- Right-to-Left (RTL) language support
- Liquid Glass effect implementation
- Adding custom content views inside buttons
- Click event handling (
Clicked event)
- Advanced scenarios and combinations
- Migration from older versions
Troubleshooting
📄 Read: references/troubleshooting.md
When to read: Issues, errors, unexpected behavior, best practices
- Common problems and solutions
- Handler registration errors
- Image loading issues
- Layout and sizing problems
- Visual state not updating
- Platform-specific considerations
1---2name: syncfusion-maui-button3description: Implements and customize Syncfusion .NET MAUI Button (SfButton) control. Use when working with MAUI buttons, SfButton implementation, button customization, or visual states. Covers button icons, background images, RTL support, Liquid Glass effects, custom button views, button styling, events, and checkable buttons.4---5
6# Implementing .NET MAUI Button
7
8A comprehensive skill for implementing and customizing the Syncfusion .NET MAUI Button (SfButton) control. The SfButton provides rich customization options including icons, background images, visual states, corner radius, and custom content support.
9
10## When to Use This Skill
11
12Use this skill when you need to:
13- Install and set up SfButton in a .NET MAUI project
14- Create basic or customized buttons with text and icons
15- Implement visual states (normal, hovered, pressed, checked, disabled)
16- Add background images or custom content to buttons
17- Handle button click events
18- Create toggle/checkable buttons
19- Apply RTL (right-to-left) support
20- Implement modern styling with Liquid Glass effects
21- Customize button appearance (colors, fonts, borders, padding)
22- Troubleshoot button-related issues
23
24## Component Overview
25
26The Syncfusion .NET MAUI Button (SfButton) is a custom button control that extends the standard MAUI button with advanced UI customization capabilities:
27
28**Key Features:**
29- **Flexible styling:** Outline, flat, circle, or icon button types
30- **Rich content:** Icons, background images, and custom views
31- **Visual states:** Built-in support for hover, press, checked, and disabled states
32- **Modern effects:** Liquid Glass support for contemporary UI design
33- **Accessibility:** RTL support and keyboard navigation
34- **Easy integration:** Simple XAML or C# implementation
35
36## Documentation and Navigation Guide
37
38### Getting Started
39📄 **Read:** [references/getting-started.md](references/getting-started.md)
40
41When to read: Installation, initial setup, first-time implementation
42- NuGet package installation (`Syncfusion.Maui.Buttons`)
43- Handler registration in `MauiProgram.cs`
44- Basic button implementation in XAML and C#
45- Adding button icons with `ImageSource` and `ShowIcon`
46- Setting background images with `BackgroundImageSource`
47- Minimal working examples
48
49### Customization and Styling
50📄 **Read:** [references/customization.md](references/customization.md)
51
52When to read: Appearance customization, styling buttons, layout control
53- Text customization (color, size, font, alignment)
54- Background color and border styling
55- Corner radius and padding adjustments
56- Size control (width, height)
57- Image width and positioning
58- Alignment options (horizontal, vertical)
59- Complete styling examples
60
61### Visual States
62📄 **Read:** [references/visual-states.md](references/visual-states.md)
63
64When to read: State-based styling, hover effects, toggle buttons, interactive feedback
65- Visual state overview (Normal, Hovered, Pressed, Checked, Disabled)
66- Implementing VisualStateManager
67- Creating checkable/toggle buttons with `IsCheckable`
68- Customizing appearance for each state
69- State transition handling
70- Complete state management examples
71
72### Advanced Features
73📄 **Read:** [references/advanced-features.md](references/advanced-features.md)
74
75When to read: RTL support, modern effects, custom content, events, migration
76- Right-to-Left (RTL) language support
77- Liquid Glass effect implementation
78- Adding custom content views inside buttons
79- Click event handling (`Clicked` event)
80- Advanced scenarios and combinations
81- Migration from older versions
82
83### Troubleshooting
84📄 **Read:** [references/troubleshooting.md](references/troubleshooting.md)
85
86When to read: Issues, errors, unexpected behavior, best practices
87- Common problems and solutions
88- Handler registration errors
89- Image loading issues
90- Layout and sizing problems
91- Visual state not updating
92- Platform-specific considerations
93