上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 46 下一页
摘要: 阅读全文
posted @ 2021-12-20 14:48 东百牧码人 阅读(292) 评论(0) 推荐(0)
摘要: Process proc = new Process(); proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; proc.StartInfo.FileName = appName; proc.StartInfo.Arguments = ar 阅读全文
posted @ 2021-11-30 18:39 东百牧码人 阅读(254) 评论(0) 推荐(0)
摘要: (//div[@class='ivu-select-selection']/input)[1] 关键点: 1.小括号中表示匹配内容 2.中括号元素序号 阅读全文
posted @ 2021-11-22 09:33 东百牧码人 阅读(137) 评论(0) 推荐(0)
摘要: //a[contains(text(),'走近冬奥')] 阅读全文
posted @ 2021-10-18 13:42 东百牧码人 阅读(246) 评论(0) 推荐(0)
摘要: 使用MouseUp 触发选中行事件后续操作; 阅读全文
posted @ 2021-09-18 14:21 东百牧码人 阅读(1303) 评论(0) 推荐(0)
摘要: var cts = new CancellationTokenSource(); cancellationTokenSources.Add(cts); var t = Task.Run(() => { if (!cts.IsCancellationRequested) { //do somethin 阅读全文
posted @ 2021-09-18 13:58 东百牧码人 阅读(178) 评论(0) 推荐(0)
摘要: 1.当ListBox内容很多时 可使用异步动态加载友好显示 private ObservableCollection<ImageInfo> detailImages = new ObservableCollection<ImageInfo>(); public ObservableCollectio 阅读全文
posted @ 2021-09-16 12:00 东百牧码人 阅读(452) 评论(0) 推荐(0)
摘要: 1 public static void PrintwithoutDialog(this DocumentViewer viewer, FixedDocument fixedDoc) 2 { 3 PrintDialog pDialog = new PrintDialog(); 4 pDialog.P 阅读全文
posted @ 2021-09-13 10:45 东百牧码人 阅读(89) 评论(0) 推荐(0)
摘要: 1 System.Timers.Timer timer = new System.Timers.Timer(); 2 timer.Interval = 360; 3 timer.Elapsed += delegate 4 { 5 Application.Current.Dispatcher.Begi 阅读全文
posted @ 2021-08-31 10:11 东百牧码人 阅读(418) 评论(0) 推荐(0)
摘要: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:the 阅读全文
posted @ 2021-08-13 09:58 东百牧码人 阅读(192) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 46 下一页