How to do UI Design that fix in all the screen size
-
Dear friends, I am new to WPF and I have to design pages, and I do not know how to design pages that fits for many screen size Is it possible to design screen that fits in all the screen size? Then how? If not all the screen size I need to fix it for 4/3 screen resolution like 800 600 1024 768 1280 960 1600 1200 1792 1344 Any idea? Link? Thanks
-
Dear friends, I am new to WPF and I have to design pages, and I do not know how to design pages that fits for many screen size Is it possible to design screen that fits in all the screen size? Then how? If not all the screen size I need to fix it for 4/3 screen resolution like 800 600 1024 768 1280 960 1600 1200 1792 1344 Any idea? Link? Thanks
The layout system in UI is designed to be resolution independent. Rather than positioning things absolutely, you can lay things out in any one of a number of panels (such as a Grid), and use margins and padding to achieve whatever effects you want.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
The layout system in UI is designed to be resolution independent. Rather than positioning things absolutely, you can lay things out in any one of a number of panels (such as a Grid), and use margins and padding to achieve whatever effects you want.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
Thanks for reply, My problem like these .. i have button and i specified size for the button in One screen size... when i change to other screen size ..the button size same i tried to by removing button size and just to specify the margin ...if i set margin the (then the margin space remains same) i do not know what to do? thanks