Kris Kazmar
Kris Kazmar
[PrjApc - 2023-09-09.zip](https://github.com/mono/mono/files/12566260/PrjApc.-.2023-09-09.zip) The attached zip file contains a very small test program that demonstrates the problem. Ignore the Japanese character issue also being reported (issue #21697). https://github.com/mono/mono/issues/21697 Thank you...
Hello! As per my comment on: https://github.com/mono/mono/issues/21697 I believe the Japanese character issue has been solved, but I don’t believe it got into the released code. If not part of...
The issue "Multi-line Button text not centered for the 2nd line" is fixed by: https://github.com/mono/libgdiplus/compare/main...kriskazmar:libgdiplus:patch-1
[PrjApc - 2023-09-09.zip](https://github.com/mono/mono/files/12566162/PrjApc.-.2023-09-09.zip) The attached zip file contain a very small test program that demonstrates the problem. For this program, you will need to install the msgothic.ttc font. // Install...
My issue was fixed by using this modification (isspace() -> iswspace()) per the following link: https://github.com/mono/libgdiplus/commit/926ebd171a47e5e299e6dfab3a1def7e51a8ac86
I'm working on solving the same problem. Have you solved it?
The solution for us was to do the following: In our C# Windows Form application: ``` public void CursorHide() { Cursor.Hide(); if (IsLinux()) { try { Process.Start("systemctl", "start cursor.service"); }...