PrepAway - Latest Free Exam Questions & Answers

Which code segment should you write in the constructor of the MainWindow class?

You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. The
application has a window named MainWindow that has a StackPanel control named sp as the root element.
You want to create a Button control that contains a TextBlock control with the “Save” Text property.
You need to create the control dynamically and add the control to sp.
Which code segment should you write in the constructor of the MainWindow class?

PrepAway - Latest Free Exam Questions & Answers

A.
Button btn = new Button();
TextBlock text = new TextBlock();
text.Text = “Save”;
btn.Content = text;
sp.DataContext = btn;

B.
Button btn = new Button();
TextBlock text = new TextBlock();
text.Text = “Save”;
btn.Content = text;
sp.Children.Add(btn);

C.
Button btn = new Button();
TextBlock text = new TextBlock();
text.Text = “Save”;
sp.Children.Add(btn);
sp.Children.Add(text);

D.
Button btn = new Button();
TextBlock text = new TextBlock();
text.Text = “Save”;
btn.ContentTemplateSelector.SelectTemplate(text, null);
sp.Children.Add(btn);


Leave a Reply