InterviewSolution
Saved Bookmarks
| 1. |
Explain the different types of resources available in WPF. |
|
Answer» Resources can be classified into two types:
Example: If you implement "bitmapImageResource" as a static resource, it will remain the same, even if the source of the image is CHANGED. However, if you use "textForeColorResource" as a dynamic resource and change its color at runtime, then any element which references this resource will be affected. |
|