EditCancel button
A silver button used for canceling a process, or for providing a more discreet but accessible button during a process.
Base component is StateButton, more info here – https://github.com/IeuanWalker/Xamarin.Forms.StateButton
How to use this component
Should predominantly be used when cancelling a process.
Code Resource
<buttons:EditCancel Margin="20,10,20,10"
Padding="4"
Clicked="EditCancelOrder_OnTapped"
Text="{x:Static resx:AppResources.LblBulkyEditCancel}" />
- Text
- Sets the text displayed on the button
- Default is String.Empty
- State
- This changes based on the button state.
- Options are Pressed or NotPressed
- Default is NotPressed
- ClickedCommand
- Triggered when the button is pressed and released
- PressedCommand
- Triggered when the button is pressed
- ReleasedCommand
- Triggered when the button is released
- Clicked
- Triggered when the button is pressed and released
- Pressed
- Triggered when the button is pressed
- Released
- Triggered when the button is released
How should this component look?
