WPF Interview questions


Total available count: 11
Subject - Microsoft Technologies
Subsubject - WPF

What is the difference between ComboBox IsEditable and IsReadOnly properties?

Setting IsEditable to true turns ComboBox's selection box into a text box.

IsReadOnly controls whether that text box can be edited, just like TextBox's IsReadOnly property. This means that IsReadOnly is meaningless unless IsEditable is true.

IsEditable being true doesn't necessarily mean that the selection text can be edited. Below in the table sums up the behavior of ComboBox based on the values of these two properties.




Next 4 interview question(s)

1
When should I use WPF instead of Windows Forms?
2
What are possible ways to implement distributed applications in .NET?
3
What is BAML?
4
What is WPF?