Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kerpecheva/numericinput styling changes #989

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
305 changes: 0 additions & 305 deletions controls/numericinput/control-template.md

This file was deleted.

8 changes: 4 additions & 4 deletions controls/numericinput/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The NumericInput exposes a `ValueChanged` event, which is raised after the input

The `ValueChanged` event handler receives two parameters:

* The `Sender` which is the `RadNumericInput` control;
* `ValueChangedEventArgs` provides the following properties:
* The `sender` which is the `RadNumericInput` control;
* `Telerik.Maui.Controls.ValueChangedEventArgs` provides the following properties:

* `OldValue` of type `double?` gets the old value.
* `PreviousValue` of type `double?` gets the old value.
* `NewValue` of type `double?` gets the new value.

The following example demonstrates how to use the `ValueChanged` event.
Expand All @@ -30,7 +30,7 @@ The following example demonstrates how to use the `ValueChanged` event.
**2.** Set the `ValueChanged` event:

```C#
private void RadNumericInput_ValueChanged(object sender, Telerik.Maui.Controls.NumericInput.ValueChangedEventArgs e)
private void RadNumericInput_ValueChanged(object sender, Telerik.Maui.Controls.ValueChangedEventArgs<double?> e)
{
// implement your logic here
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading