In C#, which Canvas property is used to get the rendered width of the Canvas? A.
ID: 3711685 • Letter: I
Question
In C#, which Canvas property is used to get the rendered width of the Canvas?
A. Width
B. RenderedWidth
C. ActualWidth
D. CurrentWidth
Consider this code in C#:
Storyboard.TargetName="MyRectangle"
Storyboard.TargetProperty="Opacity"
From="1.0" To="0" Duration="0:10:5.5"
The duration of the animation in the above code is:
A. 15.5 seconds
B. 10 minutes and 5.5 seconds
C. 10 seconds and 5.5 milliseconds
D. None of the above
Consider the following line in C#:
this.RegisterName(myRectangle.Name, myRectangle);
This line is redundant, removing it will not cause any problem.
A. True
B. False
In C#, it's possible to add multiple children to a given storyboard instance, and have multiple animation effects.
A. True
B. False
Explanation / Answer
In C#, which Canvas property is used to get the rendered width of the Canvas?
Answer : Width
Reason: Auto set property which will return rendered width
Consider this code in C#:
Storyboard.TargetName="MyRectangle"
Storyboard.TargetProperty="Opacity"
From="1.0" To="0" Duration="0:10:5.5"
Answer : C. 10 seconds and 5.5 milliseconds
Reason : Duration is stored in minutes:second:milisecond
Consider the following line in C#:
this.RegisterName(myRectangle.Name, myRectangle);
This line is redundant, removing it will not cause any problem.
Answer : True
In C#, it's possible to add multiple children to a given storyboard instance, and have multiple animation effects.
Answer : True, you can add multiple childern to a given storyboard instance. At the same time multiple animation effects are also possible.