InterviewSolution
Saved Bookmarks
| 1. |
Why layout panels are needed in WPF and write its different types? |
|
Answer» GUI ELEMENTS are arranged in an application by layout panels. In the event that you design your controls on fixed coordinates, the application MODEL will not work if you MOVE it to a DIFFERENT ENVIRONMENT with different resolutions. As a result, layout panels are necessary to ensure that your control fits different screen sizes. WPF offers the following layout panels:
Consequently, these panels are easy to use, versatile, and extensible enough to meet the needs of most applications. |
|