<SfInPlaceEditor TValue="string">
<InPlaceEditorEvents ValueChange="@ValueChangeHandler" ></InPlaceEditorEvents>
<EditorComponent>
<SfTextBox @bind-Value="@ProjectName" Placeholder="Enter project name"></SfTextBox>
</EditorComponent>
</SfInPlaceEditor>
I want to catch the ValueChange event. The problem is in my code where it says that the function prototype is ambiguous. What is the correct specification for the function to catch this event?
public void ValueChangeHandler(ChangeEventArgs args)
{
Debug.Write("##### ShowProjectSettings.ValueChangeHandler #####");
}