-
Trigger TextBox TextInput event not work
var textbox = new TextBox().Dump();textbox.Click += (s, e) => "Trigger Click".Dump();textbox.TextInput += (s, e) => "Trigger TextInput".Dump();// Trigger Click is worktextbo… (View Post) -
Re: Trigger TextBox TextInput event not work
I give up and find another way I achieve by InvokeScript with JS dispatchEvent public class SV_InvokeScript { public static void TriggerById_Input(string id) => TriggerEventById(id, OpEvent.input)… (View Post)