VB.NET - Anchoring and Docking in .NET.

Define Anchoring and Docking in .NET.

- Anchoring treats the component as having the absolute size and adjusts its location relative to the parent form.
- Docking treats the component location as absolute and disregards the component size. So if a status bar must always be at the bottom no matter what, use docking.
- If a button should be on the top right, but change its position with the form being resized, use anchoring.
VB.NET - Garbage collection
Garbage collection - GC is automatic memory reclamation. It is low-priority thread that always runs in the background of the application. ........
VB.NET - Define Assembly in .NET
Define Assembly in .NET - An assembly that can be shared by multiple applications. To make an assembly a shared assembly.......
VB.NET - Describe user interface design in .Net
Describe user interface design in .Net - Major elements of a user interface include forms, controls, and menus......
Post your comment