The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
AJAhamedAliNishad JahirHussain Syncfusion Team February 5, 2024 11:57 AM UTC
Hi Thanh,
Query : How can my program listen whenever Enter key
be down in SfNumbericEntry?
We have reviewed
your query, and we would like to inform you that SfNumericEntry does not have
direct support for the completed event. Instead, you can achieve similar
behavior by invoking the completed event of the entry, which is a child of
SfNumericEntry. Whenever you press the Enter button in the SfNumericEntry on
windows and mac, the Completed event will be triggered, as demonstrated in the
code snippet below. Please review the attached sample and let us know the
details.
Code Snippet :
Mainpage.xaml.cs
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
(numericEntry.Children[0] as
Entry).Completed += MainPage_Completed;