welcome to Qijie's Blog 薛其杰
摘要: Use UI Automation, to choose an item in Combobox, code like this:using System.Windows.Automation; public static void SetSelectedComboBoxItem(AutomationElement comboBox, string item) { AutomationPattern automationPatternFromElement = GetSpecifiedPattern(comboBox, "ExpandColla... 阅读全文
posted @ 2013-04-02 15:05 零点零一 阅读(738) 评论(0) 推荐(0)
摘要: 上传的图片要求不能包含debug的信息, 关于如何去掉模拟器中的debug信息:在App.xaml.cs 中, 在构造函数中, 把Application.Current.Host.Settings.EnableFrameRateCounter = true;改为:Application.Current.Host.Settings.EnableFrameRateCounter = false; 阅读全文
posted @ 2013-04-02 11:29 零点零一 阅读(144) 评论(0) 推荐(0)