分享最新微软70-502认证考题.doc
上传人:sy****28 上传时间:2024-09-12 格式:DOC 页数:2 大小:18KB 金币:16 举报 版权申诉
预览加载中,请您耐心等待几秒...

分享最新微软70-502认证考题.doc

分享最新微软70-502认证考题.doc

预览

在线预览结束,喜欢就下载吧,查找使用更方便

16 金币

下载此文档

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

分享最新微软70-502认证考题获得新推出的HYPERLINK"http://www.testinside.cn/Microsoft-exam.htm"微软认证技术专家(MCTS)认证资格就意味着微软承认你已具备高水平的产品专业技能与知识。您将充分展示在系统管理、部署与维护软SQLServer2005方面的专业技能,或展示在采用BizTalkServer2006进行业务流程开发与解决方案集成方面出色的专业技术。HYPERLINK"http://www.testinside.cn/70-502.htm"70-502考试是Microsoft公司的TS:Microsoft.NETFramework3.5-WindowsPresentationFoundation认证考试官方代号,Testinside的70-502权威考试题库软件是Microsoft认证厂商的授权产品,Testinside绝对保证第一次参加70-502考试的考生即可顺利通过。Testinside实行“一次不过全额退款”承诺。如果您购买Testinside70-502的考题,只要不是首次通过,凭盖有PROMETRIC或VUE考试中心钢印的考试成绩单,将退还您购买70-502考题大师的全部费用,绝对保证你的利益不受到任何的损失。考题参考:---YouarecreatingaWindowsPresentationFoundationapplicationbyusingMicrosoft.NETFramework3.5.YouaddaCommandBindingelementtotheWindowelement.ThecommandhasakeyboardgestureCTRL+H.TheWindowcontainsthefollowingMenuItemcontrol.<MenuItemHeader="HighlightContent"Command="local:CustomCommands.Highlight"/>YouneedtoensurethattheMenuItemcontrolisdisabledandthecommandisnotexecutablewhenthefocusshiftstoaTextBoxcontrolthatdoesnotcontainanytext.Whatshouldyoudo?A.SettheIsEnabledpropertyfortheMenuItemcontrolintheGotFocuseventhandlerfortheTextBoxcontrols.B.SettheCanExecutepropertyofthecommandtoHighlight_CanExecute.Addthefollowingmethodtothecode-behindfileforthewindow.PrivateSubHighlight_CanExecute(ByValsenderAsObject,_ByValeAsCanExecuteRoutedEventArgs)DimtxtBoxAsTextBox=CType(sender,TextBox)e.CanExecute=(txtBox.Text.Length>0)EndSubC.SettheCanExecutepropertyofthecommandtoHighlight_CanExecute.Addthefollowingmethodtothecode-behindfileforthewindow.PrivateSubHighlight_CanExecute(ByValsenderAsObject,_ByValeAsCanExecuteRoutedEventArgs)DimtxtBoxAsTextBoxtxtBox=CType(e.Source,TextBox)e.CanExecute=(txtBox.Text.Length>0)EndSubD.SettheCanExecutepropertyofthecommandtoHighlight_CanExecute.Addthefollowingmethodtothecode-behindfileforthewindow.PrivateSubHighlight_CanExecute(ByValsenderAsObject,_?ByValeAsCanExecuteRoutedEventArgs)DimMenuAsMenuItem=CType(e.Source,MenuItem)DimtxtBoxAsTextBox=CType(Menu.CommandTarget,TextBox)Menu.IsEnabled=(txtBox.Text.