Choose a topic to test your knowledge and improve your WPF skills
The TextBox control shows a default context menu with options to Cut, Copy and Paste. Can we override this context menu by defining our own in the TextBox control?
Can we store the ContextMenu in Resource so that we can reuse it for various control on a form?
In WPF Padding controls how much extra space gets placed around the inside edges of the element.
Visibility (defined on UIElement) might sound like a strange property to talk about in the context of layout, but it is indeed relevant. An elementβs Visibility property actually isnβt Boolean, but rather a three-state System.Windows.Visibility enumeration. One of Its value is βCollapsedβ What is the meaning of this value
BAML canβt be decompiled back into XAML
the .NET Framework 4.0 introduces a handful of new features for the XAML language. This second generation of the XAML language is referred to as
FrameworkElement is derived from
WPF separates the appearance of an user interface from its behavior. The appearance is generally specified in the_______.
Which of the following layout is not available in WPF?
Static and data binding markup extensions are same.True or false?
WPF is a replacement to DirectX.True or False?
which is dependency property in this code:
Transformations are available in which namespace?
Which tool(s)is/are used to develop WPF applications?
WrapPanel Class comes under_______ assembly.
Development is more efficient because designers can implement an applicationβs appearance simultaneously with developers who are implementing the applicationβs behavior.True or false?
A key element of the Trustworthy Computing initiative in WPF is_______.
Which of the following is routing strategy of Routed events?
Child controls are virtualized and arranged on a single line that is either horizontally or vertically oriented. Is true about?
Child controls are positioned in left-to-right order and wrapped to the next line when there are more controls on the current line than space allows.Is true about?
.In DockPanel Child controls are aligned to the edges of the panel.True or False?>
Which of the following is not WPF model(used to create a new control/custom control)?
.One of the primary architectural philosophies used in building WPF was a preference for properties over methods or events.
.Which of the following class is used to implement Trees in WPF?
____class provides the GetChildren, GetParent, and FindLogicalNode methods for logical tree traversal.
___ is a DependencyProperty instance, which is obtained as a return value when registering a dependency property, and then stored as a static member of a class.
Windows Presentation Foundation (WPF) introduces _______ events that can invoke handlers that exist on various listeners in the element tree of an application.
The________attribute works for FrameworkElement and FrameworkContentElement used for consistency.
All XAML resources should have an________attribute in WPF.
x:Null specifies null as a value for a property and can be used either for attributes or property element values.True or False?
_____provides a value for a property by deferring that value to be a run-time reference to a resource.
_______provides a value for a property by substituting the value of an already defined resource.
____provides source information for a Binding that can navigate several possible relationships in the run-time object tree.
____provides a data bound value for a property, using the data context that applies to the parent object at run time.
What is full form of WPF?
What is XAML?
Does that mean WPF has replaced DirectX?
Is XAML meant only for WPF ?
What is the stand for is XBAP?
Which of the following have two states of Freezable object?
Which layout control would be the best choice for a user interface that requires evenly spaced controls laid out?
Events Supported by WPF is are?
WPF transformations can be used for
Which object can be used share the variable across pages in WPF?
Which of the following is true regarding XAML?
How you can set a working mnemonic key for a label?
In WPF which language is used to express user interface?
WPF stands for - Windows Presentation Foundation.
_____ layout isn't available in WPF.
WPF is a replacement to