Dmitriy

Results 15 comments of Dmitriy

I need help with WebView.

This stopped working after upgrading to beta 0.9.0. I rolled back to 0.8.1.

It's happens only when I build UWP app with .NET Native.

> chatGPT is a generative AI API. You send it text, and it sends back text in response. > > It doesn't send emails, so can you clarify what you...

> Best bet there would likely be to write a chatGPT plugin https://openai.com/blog/chatgpt-plugins As a developer of this library, you can make it so that there is some kind of...

```cs FocusManager.ClearFocus(); SearchBoxUI.Focus(NavigationMethod.Tab); InputSimulator input = new InputSimulator(); input.Keyboard.KeyPress(WindowsInput.Native.VirtualKeyCode.TAB); input.Keyboard.KeyPress(WindowsInput.Native.VirtualKeyCode.TAB); input.Keyboard.KeyPress(WindowsInput.Native.VirtualKeyCode.TAB); await Task.Delay(5000); App.VoiceService.LaunchVoiceInput(); ``` I had to use a hard hack because when focusing with TAB selection it works😅