This page was exported from Free Download Lead2pass VCE And PDF Dumps [ https://www.pass4sureshared.com ]
Export date: Thu Mar 28 10:57:49 2024 / +0000 GMT

[2016-New] Free Sharing Of Microsoft 70-511 Brain Dumps From GreatExam (11-20)



2016 June Microsoft Official New Released 70-511 Q&As in GreatExam.com!

100% Free Download! 100% Pass Guaranteed!

GreatExam is one of the leading exam preparation material providers. Its updated 70-511 braindumps in PDF can ensure most candidates pass the exam without too much effort. If you are struggling for the 70-511 exam, it will be a wise choice that get help from GreatExam.

Following questions and answers are all new published by Microsoft Official Exam Center: (The full version is in the end of the article!!!)

QUESTION 11
You are developing a Windows Presentation Foundation (WPF) application.
You have the following style defined in the app.xaml file.
<Style x:Key="btnItalic" x:Naitie= "styleItalic"
TargetType="{x:Type Button}">
<Setter Property="FontStyle" Value="Italic"/> </Style>
You need to apply this style to a button named button1 in the application at run time.
Which code segment should you use?

A.    button1.Style =
this.FindName("styleltalic") as Style;
B.    button1.Style =
this.FindName("btnltalic") as Style;
C.    button1.Style =
this.FindResoucce("btnltalic") as Style;
D.    button1.Style =
this.FindResource("styleltalic") as Style;

Answer: C

QUESTION 12
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
You add a custom command as a resource.
The key of the command is saveCommand.
You write the following code fragment. (Line numbers are included for reference only.)
01 < Canvas>
03 <Button>
05 </Bucton>
06 </Canvas>
You need to ensure that saveCommand is executed when the user clicks the Button control.
What should you do?

A.    Insert the following code fragment at line 04.
<Button.Coiranand>
<StaticResource ResourceKey="saveCoKiniand" />
</Button.Command>
B.    Insert the following code fragment at line 04.
<Button.CommandBindings>
<CoRimandBinding Comitiand="( StaticResource saveCoimtiand}" />
</Button.CommandBindings>
C.    Insert the following code fragment at line 02.
<Canvas.CommandBindings>
<ComtnandBinding Command="{StaticResoucce saveComroand}" />
</Canvas.CommandB indings>
Replace line 03 with the following code fragment.
<Bucton CommandTarget="{Binding RelativeSource={RelativeSource Self},
Path=Parent>">
D.    Insert the following code fragment at line 02.
<Canvas.CommandBindings>
<CommandBinding Command="{StaticResoucce saveComroand}" />
</Canvas.CommandBindings>
Replace line 03 with the following code fragment.
<Buccon CommandPararoecec="{Binding RelativeSource=(RelaciveSource
Self}, Path=Parent>">

Answer: A

QUESTION 13
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
The application displays a list of books.
You write the following code fragment. (Line numbers are included for reference only.)
01 <Window. Resources>
02 <XmlDataProvider x:Key="InventoryData" XPath="Books">
03 <x:XData>
04 <Books xmlns="">
05 <Book Title="XML in Action" Stock="in" />
06 <Book Title="Inside C#" Stock-"out" />
07 <Book Title="Introducing Microsoft .NET" Stock="in"/>
08 </Books>
09 </x:XData>
10 </XrolDataPi:ovider>
11 <Style x:Key="HyIternStyle" TargetType="{x:Type ListBoxItem) ">
12
13 </Style>
14 </Window.Resources>
15 <ListBox ItetnContainerStyle="{StaticResource HyItemstyle) ">
16 <ListBox.ItemsSource>
17 <Binding Source="{StaticResource InventoryData}" XPath="Book"/>
18 </ListBox. ItemsSource>
19 <ListBox. ItewTeitiplate>
20 <DataTemplate>
21 <TextBlock>
22 <TextBlock.Text>
23 <Binding XPath="@Title"/>
24 </TextBlock.Text>
25 </TextBlock>
26 </DotaTemplote>
27 </LiscBox. IcemTemplate
28 </ListBox>

A.    <Style.Triggers>
<Trigger Binding. XmlNarnespaceHanager""! Binding XPath"6Stock>"
Value-"out"> <Setter Property-Toreground" Value-"Red" />
</Trigger>
</Style.Triggecs>
B.    <Style.Triggers>
<DataTrigger Binding-"<Binding XPath"0Stock)" Value""out">
<Setter Pcoperty="Foregcound" Value="Ped" />
</DataTrigger>
</Style.Triggers>
C.    <Style.Triggers>
<Trigger Binding.XmlNamespaceHanager="{Binding XPath=BookGStock)"
Value="out">
<Setter Property="Foreground" Value="Red" />
</Trigger>
</Style.Tr iggers>
D.    <Style.Triggers>
<DataTrigger Binding="{Binding XPath=Book8Stock}" Value="out">
<Setter Property="Foreground" Value="Red" />
</DataTrigger>
</Style.Triggers>

Answer: B

QUESTION 14
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
You write the following code fragment.
< StackPanel TextBox.PreviewTextInput="StackPanel_PreviewTextInput" >
< TextBox Name="TxtBoxA"/>
< TextBox Naroe="TxtBoxB"/>
< TextBox Name="TxtBoxC"/>
< /StackPanel>
You create an event handler named StackPanel_PreviewTextInput.
You also have a collection of strings named Keywords.
You need to ensure that TxtBoxA and TxtBoxB do not contain any of the strings in the Keywords collections.
Which code segment should you use?

A.    private void StackPanel_PreviewTextInput(
object sender, TextCompositionEventArgs e) (
FrameuorkEleroent feSource sender as Framework Element:
if (resource.Name == "TxtBoxA" || feSource.Name == "TxtBoxB") {
foreach(string keyword in Keywords)
if(e.Text.Contains(keyword) )
{
Handled = false; return;
}
}
Handled = true;
}
}
B.    private void StackPanel_PreviewTextInput(
object sender, TextCompositionEventArgs e)
(
FrameworkElement feSource = e.Source as FrameworkElement;
if (feSource.Name == "TxtBoxA" ||
feSource.Name == "TxtBoxB") {
foreach(string keyword in Keywords)
{
if(e.Text.Contains(keyword))
{
Handled false;
return;
}
}
Handled = true;
}
}
C.    private void StackPanel PreviewTextlnput(
object sender, TextCompositionEventArgs e)
{
FrameworkElement feSource = sender as FrameworkElement;
if (feSource.Name == "TxtBoxA" ||
feSource.Name == "TxtBoxB") {
foreach(string keyword in Keywords)
{
if(e.Text.Contains(keyword) )
{
Handled = true; return;
}
}
Handled = false;
}
}
D.    private void StackPanel_PreviewTextInput(
object sender, TextCompositionEventArgs e)
{
FrameworkElement feSource = e. Source as FrameworkElement;
if (feSource.Name == "TxtBoxA" ||
feSource.Name == "TxtBoxB") {
foreach(string keyword in Keywords) {
if(e.Text.Contains(keyword) )
{
Handled = true; return; )
}
Handled = false;
}
}

Answer: D

QUESTION 15
You are developing a user control for a Windows Presentation Foundation (WPF) application. The user control contains a button.
Both the user control and the hosting control must receive the button click event.
You need to ensure that the user control responds to the button click event before the hosting control responds to the event.
What should you do?

A.    Use a bubbling routed event.
In the button click event handler, set the Handled property to true,
B.    Use a bubbling routed event.
In the button click event handler, set the Handled property to false.
C.    Use a standard Microsoft .NET event.
Set the Handled property to true.
D.    Use a tunneling routed event.
Set the Handled property to false.

Answer: C

QUESTION 16
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
You write the following code fragment. (Line numbers are included for reference only.)
You need to ensure that both Button controls display the "Save" text.
Which code fragment should you insert at line 06?
161

A.    <TextBlock Text="{Binding}" />
B.    <TextBlock Text="{TemplateBinding Content}" />
C.    <ContentPresentec Content="{Binding}" />
D.    <ContentPresentec />

Answer: D

QUESTION 17
You use Microsoft .NET Framework 4 to create a Windows Presentation Framework (WPF) application.
You plan to create a custom control that contains four text input fields.
Each of the text input fields within the control will contain a label.
You need to ensure that the text input fields within the control can be validated by using a regular expression validator.
Which class should you inherit from?

A.    TextBox
B.    TextElement
C.    UIElement
D.    UserControl

Answer: D

QUESTION 18
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
You want to add an audio player that plays .wav or .mp3 files when the user clicks a button.
You plan to store the name of the file to a variable named SoundFilePath.
You need to ensure that when a user clicks the button, the file provided by SoundFilePath plays.
What should you do?

A.    Write the following code segment in the button onclick event.
System.Media.SoundPlayer player = new System.Media.SoundPlayer
(SoundFilePath);
player.Play() ;
B.    Write the following code segment in the button onclick event.
MediaPlayer player = new MediaPlayer() ;
player.Open(new URI(SoundFilePath), UriKind.Relative));
player.Play() ;
C.    Use the following code segment from the PlaySound() Win32 API function and call the
PlaySound function in the button onclick event.
[sysimport (dll="winmm.dll") ]
public static extern long PlaySound
(String SoundFilePath, long hModule, long dwFlags);
D.    Reference the Microsoft.DirectX Dynamic Link Libraries.
Use the following code segment in the button onclick event.
Audio song = new Song(SoundFilePath);
song.CurrentPosition = song.Duration;
song.Play ();

Answer: B

QUESTION 19
You use Microsoft .NET Framework 4 to create a Windows Forms application.
You plan to use a Windows Presentation Foundation (WPF) control of the UserControl1 type hosted in an ElementHost control named elementHost1.
You write the following code segment. (Line numbers are included for reference only.)
You need to ensure that the application changes the background color of the hosted control when the background color of the form changes.
Which code segment should you insert at line O5?
191

A.    elementHost1.PropertyMap.Remove ("BackColor");
elementHost1.PropertyMap.Add("BackColor", new PropertyTranslator
(OnBackColorChange));
B.    elementHost1. PropertyMap.Remove ("Background");
elementHost1.PropercyMap.Add("Background", new PropertyTranslator
(OnBackColorChange));
C.    elementHost1.PropertyMap.Add("BackColor", new PropertyTranslator
(OnBackColorChange));
elementHost1.PropertyMap.Apply("BackColor");
D.    elementHost1.PropertyMap.Add("Background", new PropertyTranslator
(OnBackColorChange));
elementHostl.PropertyMap.Apply("Background");

Answer: A

QUESTION 20
You develop a Windows Presentation Foundation (WPF) application.
This application is used to output data trends to customer service representatives.
A data trend analysis is performed in a function named UpdateTrendData.
The trend analysis is a long-running process.
The application contains the following code segment.
Class MainWindow: Window {
private void UpdateData(object arg)
{
double data = UpdateTrendData();
...
}
}
UpdateData is currently invoked on the UI thread when the form is first displayed.
You need to process the data in a manner that does not cause the UI to freeze.
What should you do?

A.    Use ThreadPool.SetMaxThreads(2, 2) and invoke UpdateData.
B.    Use ThreadPool.QueueUserWorkItem to invoke UpdateData.
C.    Use this.Dispatcher.Beginlnvoke to invoke UpdateData passing in the priority of Normal.
D.    Use this.Dispatcher.BeginInvoke to invoke UpdateData passing in the priority of Background.

Answer: B

There is no doubt that GreatExam is the top IT certificate exam material provider. All the braindumps are the latest and tested by senior Microsoft lecturers and experts. Get the 70-511 exam braindumps in GreatExam, and there would be no suspense to pass the exam.

2016 Microsoft 70-511 exam dumps (All 300Q&As) from GreatExam:

http://www.greatexam.com/70-511-exam-questions.html [100% Exam Pass Guaranteed!!!]

 

 


Post date: 2016-06-02 08:54:06
Post date GMT: 2016-06-02 08:54:06
Post modified date: 2016-06-02 08:54:06
Post modified date GMT: 2016-06-02 08:54:06

Powered by [ Universal Post Manager ] plugin. MS Word saving format developed by gVectors Team www.gVectors.com