I'm trying to get the border thickness of a console app.
So far, I've got the value from the GetSystemMetrics of the user32 dll with the SM_CXSIZEFRAME/SM_CYSIZEFRAME value.
In a winform application, it return the right value (9), however, in a console app, it return 4.
I can's see how a system metric change between those 2 calls.
Is there something specific to do in a console app ?