venerdì 6 ottobre 2017

WPF C# SendKeys.Send e SendKeys.SendWait

Nel caso che vogliamo eseguire un comando di tastiera, per esempio F5 nel caso che vogliamo aggiornare un browser, o F1 per aprire la guida, il tutto in ambiente Windows Presentation Foundation (WPF) tramite SendKeysWait possiamo inviare i comandi di tastiera.

Dopo aver aggiunto il riferimento a System.Windows.Forms, nella nostra applicazion WPF, useremo il metodo Sendkeywait per simulare un tasto.

Qui di seguito un esempio.

System.Windows.Forms.SendKeys.SendWait("{F5}");

Nessun commento: