We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello @RobyDX , I found a crash issue due to WindowRenderTarget target is null when Form1_Resize is invoked.
WindowRenderTarget target
Form1_Resize
My environment: System: Windows 10 .NET Framework: .net 4.8 and Visual Studio 2022.
After debugging the code. I found it is caused by the method calling stack:
InitializeComponent -> Form1_Resize -> Form1_Load
InitializeComponent
Form1_Load
After adding a null check, this problem has been solved. I will create a pull request.
null
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hello @RobyDX , I found a crash issue due to
WindowRenderTarget target
is null whenForm1_Resize
is invoked.My environment:
System: Windows 10
.NET Framework: .net 4.8 and Visual Studio 2022.
After debugging the code. I found it is caused by the method calling stack:
InitializeComponent
->Form1_Resize
->Form1_Load
After adding a
null
check, this problem has been solved. I will create a pull request.The text was updated successfully, but these errors were encountered: