nerdexam
Microsoft

70-511 · Question #61

You are developing a Windows Presentation Foundation (WPF) application. The application contains the following code in the code-behind file for an application window. (Line numbers are included for…

The correct answer is A. stack.Children.Add(btn). See the full explanation below for the reasoning.

Question

You are developing a Windows Presentation Foundation (WPF) application. The application contains the following code in the code-behind file for an application window. (Line numbers are included for reference only.) 01 StackPanel stack = new StackPanel () ; 02 Content = stack; 03 for (int i=0; i<10; i++) 04 { 05 Button btn = new Buttonf(); 06 btn.Name = ((char) ('A' + i)) .ToString (); 07 btn.Content = btn.Name + "says 'Click me' "; 08 09 } You need to ensure that all of the Button controls that are defined in this code segment appear in the application window. Which code segment should you insert at line 08?

Options

  • Astack.Children.Add(btn);
  • Bstack.Children.Insert (i + 1, btn);
  • CContent = btn;
  • DContent = new Button() { Name = {'A' + i) . ToString()

How the community answered

(58 responses)
  • A
    83% (48)
  • B
    12% (7)
  • C
    3% (2)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full 70-511 Practice