Marcio A Braga
Marcio A Braga
Add _RuntimeIdentifier win-x64_ in both projects P1 & P2 results in the following error message: _Assets file 'C:\xyz\P2\obj\project.assets.json' doesn't have a target for 'net6.0/win-x64'. Ensure that restore has run and...
Thanks but same error message even with bin & obj folders deleted. The steps to reproduce: 1. Create and sucessfully Publish a single P1 "hello" project. 2. Add single P2...
I have the same issue: Steps to reproduce: (1) Create a simple Form with OnKeyDown: key down works fine. (2) Add nuget package OpenTK 4.7.1: key down works fine. (3)...
Before follow this route (built GLControl Input Test) I just tested with a simple WinForms application with only nuget OpenTK.WinForms (4.0.0-pre6) and KeyDown still does not work when the control...
Same issue with "GLControl Input Test" program. I'm using net6.0-windows TargetFramework and not netcoreapp3.1
@NogginBops Yes, but it still does not work. Program pass on Form1_Show(..) but still does not pass on OnKeyDown(..). And continues to pass on ProcessCmdKey(..) what I am using as...
Over here forcing _GLControl.Focus()_ does not solve the problem, including minimizing and showing the form. But adding _GLControl.Enabled = **false**_ is another workaround: GLControl keeps working and _OnKeyDown(..)_ starts to...