I use the following code to get my computer screen size
int chieurong = SystemInformation.VirtualScreen.Width;
int chieudai = SystemInformation.VirtualScreen.Height;
Sadly, the return result is: chieurong = 1536 chieudai = 864 While my laptop screen size is Full HD (1920 X 1080) Please tell me where did I go wrong?