Chapter 18 Flashcards

1
Q

What are types of transform

A
  • Rotate transform
  • Scale transform
  • Skew transform
  • Translate transform (move)
  • Matrix transform (2D transform)(it can represent all transform types)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is center X and center Y

A

points on which transform performed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is parameter for rotate transform

A

Angel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Can we combine matrix transform

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Does there are elements which can not transform and if yes then what are they

A

Yes. Like non GDI elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is content overflow problem

A

Child and parent element does not agree the division of space on an interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the solution of content overflow problem in WPF

A

Panels

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are types of panels

A
  • Canvas
  • Stack panel
  • Wrap panel
  • Dock panel
  • Grid
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are 4 properties of canvas

A
  1. left
  2. right
  3. top
  4. bottom
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are attached properties

A

They give capability to child elements in canvas to set their properties.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Can elements overlap each other in canvas

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is z order

A

overlapping dimension

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How we set elements in stack panel

A

By orientation property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is virtualizing stack panel

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the advance form of stack panel

A

wrap panel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is wrap panel

A

It wraps to next line

17
Q

Does stack panel and wrap panel have attached property

A

No

18
Q

Is canvas fix and stack panel and wrap panel adjustable

A

Yes

19
Q

What is the transform which act like any other transform

A

Matrix transform