InterviewSolution
Saved Bookmarks
| 1. |
What are static and dynamic resources in WPF? |
|
Answer» In WPF, resources are the OBJECTS that can be used anywhere in the WPF APPLICATION for customization. In WPF resources are of two types namely- 1. STATIC Resources- These are the resources which cannot be manipulated or modified during RUNTIME. These can be evaluated for once by the implicit ELEMENT which refers during XAML loading. 2. Dynamic Resources- These are the resources which can be manipulated and modified during runtime. These resources can be evaluated during runtime. |
|