70-502VBChinese Exam
TS: Microsoft .NET Framework 3.5-Windows Presentation Foundation
- Exam Number/Code : 70-502VBChinese
- Exam Name : TS: Microsoft .NET Framework 3.5-Windows Presentation Foundation
- Questions and Answers : 90 Q&As
- Update Time: 2011-10-24
- Testing Engine (SoftWare Version): $ 50.00
- PDF (Printable Version) Price: $15.00
Note: After purchase, we will send questions within 24 hours.
Free 70-502VBChinese Demo Download
4Cert's offers free 70-502VBChinese demo,70-502VBChinese Practice exam,70-502VBChinese exam questions
for Microsoft TS (TS: Microsoft .NET Framework 3.5-Windows Presentation Foundation). You can check out the question quality and usability of our 70-502VBChinese practice exam
before you decide to buy it.Before you purchase our 70-502VBChinese Q&A,you can click the link below to download the latest
70-502VBChinese pdf demo.
Download 70-502VBChinese Exam Testing Engine
70-502VBChinese Exam Description
Microsoft certification.With the Microsoft collection of questions and answers, has assembled to take you through 90 Q&As to your 70-502VBChinese Exam preparation. In the 70-502VBChinese exam resources, you will cover every field and category in Microsoft TS helping to ready you for your successful Microsoft Certification.Why choose 4cert 70-502VBChinese exams
Quality and Value for the 70-502VBChinese Exam
100% Guarantee to Pass Your 70-502VBChinese Exam
Downloadable, Interactive 70-502VBChinese Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.
4cert 70-502VBChinese Exam Features
Guarantee to Pass Your 70-502VBChinese Exam
We provide the latest high quality 70-502VBChinese practice exam for the customers,we guarantee
your success at the first attempt with only our 70-502VBChinese exam questions, if somehow you do not pass the exam at the first
time, we will not only arrange Free Update for you, but also provide you another exam of your claim, ABSOLUTELY FREE!
After-sales Service
Once you purchase our product,we will offer you the best service.After you purchase our
product, we will offer free update in time for 90 days.Whatever you have any questions,we will help you solve it. And in 3 weeks
we will offer you free updates,so please pay attention our site at all times.
Quality and Value for the 70-502VBChinese Exam
4cert Practice Exams for Microsoft 70-502VBChinese are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
Guarantee to Pass Your 70-502VBChinese Exam
If you prepare for the exam using our 4cert testing engine, we guarantee your success in the first attempt. If you do not pass the TS 70-502VBChinese Exam exam (TS: Microsoft .NET Framework 3.5-Windows Presentation Foundation) on your first attempt we will give you a FREE UPDATE of your purchasing fee AND send you another same value product for free.
Microsoft 70-502VBChinese Exams (in EXE format)
Our Exam 70-502VBChinese Preparation Material provides you everything you will need to take your 70-502VBChinese Exam. The 70-502VBChinese Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
70-502VBChinese Downloadable, Interactive Testing engines
We are all well aware that a major problem in the IT industry is that there
is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a
certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs)
Our Microsoft 70-502VBChinese Exam will provide you with exam questions with verified answers that reflect
the actual exam. These questions and answers provide you with the experience of taking the actual test.
High quality and Value for the 70-502VBChinese Exam:100% Guarantee to Pass Your TS
exam and get your TS Certification.
Exam : Microsoft 70-502VBChinese
Title : TS: Microsoft .NET Framework 3.5 - Windows Presentation Foundation
1. 您正在使用 Microsoft .NET Framework 3.5 创建一个 Windows Presentation Foundation 应用程序。
您向 Window 元素中添加一个 CommandBinding 元素。该命令具有一个键盘笔势 Ctrl+H。Window 元素中包含下面的 MenuItem 控件。
<MenuItem Header="Highlight Content"
Command="local:CustomCommands.Highlight" />
您需要确保当焦点切换到不包含任何文本的 TextBox 控件时,MenuItem 控件处于禁用状态而且该命令不可执行。
您应该怎么办?
A. 在 TextBox 控件的 GotFocus 事件处理程序中,设置 MenuItem 控件的 IsEnabled 属性。
B. 将该命令的 CanExecute 属性设置为 Highlight_CanExecute。
将以下方法添加到该窗口的代码隐藏文件中。
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim txtBox As TextBox = CType(sender, TextBox)
e.CanExecute = (txtBox.Text.Length > 0)
End Sub
C. 将该命令的 CanExecute 属性设置为 Highlight_CanExecute。
将以下方法添加到该窗口的代码隐藏文件中。
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim txtBox As TextBox
txtBox = CType(e.Source, TextBox)
e.CanExecute = (txtBox.Text.Length > 0)
End Sub
D. 将该命令的 CanExecute 属性设置为 Highlight_CanExecute。
将以下方法添加到该窗口的代码隐藏文件中。
Private Sub Highlight_CanExecute(ByVal sender As Object, _
ByVal e As CanExecuteRoutedEventArgs)
Dim Menu As MenuItem = CType(e.Source, MenuItem)
Dim txtBox As TextBox = CType(Menu.CommandTarget, TextBox)
Menu.IsEnabled = (txtBox.Text.Length > 0)
End Sub
Answer: C
2. 您正在使用 Microsoft .NET Framework 5 创建一个 Windows Presentation Foundation 应用程序。
该应用程序定义一个 BrowserWindow 类。BrowserWindow 类的每个实例允许用户在一个单独的窗口中浏览网站。在打开新的浏览器窗口时,用户将重定向到一个预定义的 URL。
您编写以下代码段。
01 Private Sub OpenNewWindow(ByVal sender As Object, _
02 ByVal e As RoutedEventArgs)
03 Dim newWindowThread As New Thread(New _
04 ThreadStart(AddressOf NewThreadProc))
05
06 newWindowThread.Start()
07 End Sub
08 Private Sub NewThreadProc()
09
10 End Sub
您需要确保满足以下要求:
·在创建其他浏览器窗口时,应用程序的主窗口不被阻止。
·在应用程序的主窗口关闭时,应用程序即执行完毕。
您应该怎么办?
A. 在第 05 行处插入以下代码段。
newWindowThread.SetApartmentState(ApartmentState.STA)
newWindowThread.IsBackground = True
在第 09 行处插入以下代码段。
Dim newWindow As New BrowserWindow()
newWindow.Show()
Dim app As New Application()
app.Run(newWindow)
B. 在第 05 行处插入以下代码段。
newWindowThread.IsBackground = True
在第 09 行处插入以下代码段。
newWindowThread.SetApartmentState(ApartmentState.STA)
Dim newWindow As New BrowserWindow()
newWindow.Show()
Dim app As New Application()
app.Run(newWindow)
C. 在第 05 行处插入以下代码段。
newWindowThread.SetApartmentState(ApartmentState.STA)
newWindowThread.IsBackground = False
在第 09 行处插入以下代码段。
Dim newWindow As New BrowserWindow()
System.Windows.Threading.Dispatcher.Run()
newWindow.Show()
D. 在第 05 行处插入以下代码段。
newWindowThread.SetApartmentState(ApartmentState.STA)
newWindowThread.IsBackground = True
在第 09 行处插入以下代码段。
Dim newWindow As New BrowserWindow()
newWindow.Show()
System.Windows.Threading.Dispatcher.Run()
Answer: D
3. 您正在使用 Microsoft .NET Framework 3.5 创建一个 Windows Presentation Foundation 应用程序。
该应用程序使用若干个异步操作来计算显示给用户的数据。名为 tommorowsWeather 的操作执行将由其他操作使用的计算。
您需要确保 tommorowsWeather 以尽可能高的优先级运行。
您应该使用哪个代码段?
A. tomorrowsWeather.Dispatcher.BeginInvoke( _
System.Windows.Threading.DispatcherPriority.Normal, _
New OneArgDelegate(AddressOf UpdateUserInterface), weather)
B. tomorrowsWeather.Dispatcher.BeginInvoke( _
System.Windows.Threading.DispatcherPriority.DataBind, _
New OneArgDelegate(AddressOf UpdateUserInterface), weather)
C. tomorrowsWeather.Dispatcher.BeginInvoke( _
System.Windows.Threading.DispatcherPriority.Send, _
New OneArgDelegate(AddressOf UpdateUserInterface), weather)
D. tomorrowsWeather.Dispatcher.BeginInvoke( _
System.Windows.Threading.DispatcherPriority.Render, _
New OneArgDelegate(AddressOf UpdateUserInterface), weather)
Answer: C
4. 您使用 Microsoft .NET Framework 3.5 创建了一个 Windows Presentation Foundation 应用程序。该应用程序名为 EnterpriseApplication.exe,通过网络运行。
您使用设计器在用户作用域级别向 Settings.settings 文件中添加 WindowSize 参数和 WindowPosition 参数。窗口的大小和位置是从用户配置文件读取的。
该应用程序必须针对执行它的用户保持最初的窗口大小和位置。
您需要确保满足以下要求:
·每个用户的窗口大小都保存在用户配置文件中。
·在用户退出应用程序后保留用户设置。
您应该使用哪个配置设置?
A. Private Sub OnClosing(ByVal sender As Object, ByVal e _
As System.ComponentModel.CancelEventArgs)
My.Settings.Default.WindowPosition = New Point(Me.Left, Me.Top)
My.Settings.Default.WindowSize = New Size(Me.Width, Me.Height)
My.Settings.Default.Save()
End Sub
B. Private Sub OnClosing(ByVal sender As Object, ByVal e As _
System.ComponentModel.CancelEventArgs)
Dim appKey As RegistryKey = _
Registry.CurrentUser.CreateSubKey("SoftwareEnterpriseApplication")
Dim settingsKey As RegistryKey = _
appKey.CreateSubKey("WindowSettings")
Dim windowPositionKey As RegistryKey = _
settingsKey.CreateSubKey("WindowPosition")
Dim windowSizeKey As RegistryKey = _
settingsKey.CreateSubKey("WindowSize")
windowPositionKey.SetValue("X", Me.Left)
windowPositionKey.SetValue("Y", Me.Top)
windowSizeKey.SetValue("Width", Me.Width)
windowSizeKey.SetValue("Height", Me.Height)
End Sub
C. Private Sub OnClosing(ByVal sender As Object, ByVal e As _
System.ComponentModel.CancelEventArgs)
Dim doc As New System.Xml.XmlDocument()
doc.Load("EnterpriseApplication.exe.config")
Dim nodePosition As System.Xml.XmlNode = _
doc.SelectSingleNode("//setting[@name='WindowPosition']")
nodePosition.ChildNodes(0).InnerText = String.Format("{0},{1}", _
Me.Left, Me.Top)
Dim nodeSize As System.Xml.XmlNode = _
doc.SelectSingleNode("//setting[@name='WindowSize']")
nodeSize.ChildNodes(0).InnerText = String.Format("{0},{1}", _
Me.Width, Me.Height)
doc.Save("UserConfigDistractor2.exe.config")
End Sub
D. Private Sub Window_Closing(ByVal sender As Object, ByVal e As _
System.ComponentModel.CancelEventArgs)
Dim sw As New StreamWriter("EnterpriseApplication.exe.config", True)
sw.WriteLine("<EnterpriseApplication.Properties.Settings>")
sw.WriteLine("<setting name=""WindowSize"" serializeAs=""String"">")
sw.WriteLine(String.Format("<value>{0},{1}</value>", Me.Width, _
Me.Height))
sw.WriteLine("</setting>")
sw.WriteLine("<setting name=""WindowPosition"" _
serializeAs=""String"">")
sw.WriteLine(String.Format("<value>{0},{1}</value>", Me.Left, _
Me.Top))
sw.WriteLine("</setting>")
sw.WriteLine("</UserConfigProblem.Properties.Settings>")
sw.Close()
End Sub
Answer: A
5. 您正在使用 Microsoft .NET Framework 3.5 创建一个 Windows Presentation Foundation 应用程序。
您为该应用程序创建一个窗口。
您需要确保满足以下要求:
·使用 ListBox 控件以双列格式显示字符串数组。
·ListBox 控件中数据的流动方向为从左向右、自上向下。
您应该怎么办?
A. 使用按如下方式定义的 ListBox 控件。
<ListBox Name="myList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="2"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
使用下面的 VB.NET 代码将字符串数组与 ListBox 控件关联。
myList.ItemsSource = arrayOfString
B. 使用按如下方式定义的 ListBox 控件。
<ListBox Name="myList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
使用下面的 VB.NET 代码将字符串数组与 ListBox 控件关联。
myList.ItemsSource = arrayOfString
C. 使用按如下方式定义的 ListBox 控件。
<ListBox Name="myList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
使用下面的 VB.NET 代码将字符串数组与 ListBox 控件关联。
myListView.ItemsSource = arrayOfString
D. 使用按如下方式定义的 ListBox 控件。
<ListBox Name="myList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
</Grid>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
使用下面的 VB.NET 代码将字符串数组与 ListBox 控件关联。
myList.ItemsSource = arrayOfString
Answer: A
http://www.4cert.com The safer.easier way to get TS Certification.

