WPF INTERVIEW QUESTION & ANSWERS
21. |
Is x:Static the same as a data binding? |
|
x:Static is another markup extension that is different from the data binding
markup extension. It is used to retrieve data from static value members on classes. |
22. |
How many ways are there to deploy WPF applications, and what are they? |
|
There are three ways to deploy WPF applications : - as a simple XAML file
- an XBAP
- or a standard executable.
|
23. |
How do navigation applications differ from standard WPF applications? |
|
Navigation applications are based on a web browser metaphor. They use pages instead of windows, and they include a forward and back button by default. |
24. |
What type of elements can be hosted in a ToolBar? |
|
A ToolBar can host any type of .NET class. |
25. |
What is the simplest and most common way to componentize a complex UI? |
|
The easiest way to break up a complex UI is to create separate UserControls
for related parts and reference them from the original UI. |