You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2024. It is now read-only.
Signature (parameter 1) of EventHandler "OnFilterTextChanged" doesn't match the event type
Control:
public delegate void SelectedTextChangedEventHandler(object sender, TextChangedEventArgs args);public event SelectedTextChangedEventHandler TextChanged;XAML:
<controls:EntryEx TextChanged="OnFilterTextChanged"/>Code:
private void OnFilterTextChanged(object sender, EventArgs args)// Errorprivate void OnFilterTextChanged(object sender, TextChangedEventArgs args)// OK