Chapter 18 Flashcards
What are types of transform
- Rotate transform
- Scale transform
- Skew transform
- Translate transform (move)
- Matrix transform (2D transform)(it can represent all transform types)
What is center X and center Y
points on which transform performed
What is parameter for rotate transform
Angel
Can we combine matrix transform
Yes
Does there are elements which can not transform and if yes then what are they
Yes. Like non GDI elements
What is content overflow problem
Child and parent element does not agree the division of space on an interface.
What is the solution of content overflow problem in WPF
Panels
What are types of panels
- Canvas
- Stack panel
- Wrap panel
- Dock panel
- Grid
What are 4 properties of canvas
- left
- right
- top
- bottom
What are attached properties
They give capability to child elements in canvas to set their properties.
Can elements overlap each other in canvas
Yes
What is z order
overlapping dimension
How we set elements in stack panel
By orientation property
What is virtualizing stack panel
If we have many (e.g. 1000) elements and we want to load only those elements that are appearing on screen and other does not load, then we use virtualizing stack panel.
What is the advance form of stack panel
wrap panel