why is this not working? I use WPF and import the Windows Forms Sendkey.
private void Send(Key key)
{
while (StartStop_Clicked == true)
{
System.Windows.Forms.SendKeys.Send(MessageTextbox.Text);
System.Windows.Forms.SendKeys.Send("{ENTER}");
}
}