FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
24. What type of elements can be hosted in a ToolBar?
  A ToolBar can host any type of .NET class.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer