上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 46 下一页
摘要: 安装证书即可, https://www.microsoft.com/pkiops/Docs/Repository.htm 阅读全文
posted @ 2024-10-14 22:48 Hey,Coder! 阅读(9) 评论(0) 推荐(0)
摘要: 需要根据实际需求在按钮的对应事件或者Command中添加逻辑 <Style TargetType="ComboBox" x:Key="DeleteComboBoxStyle"> <Setter Property="ItemContainerStyle"> <Setter.Value> <!--Com 阅读全文
posted @ 2024-10-12 17:59 Hey,Coder! 阅读(58) 评论(0) 推荐(0)
摘要: viewmodel中定义原始数据及筛选后的数据,筛选后的数据类型为ICollectionView //原始数据列表 public ObservableCollection<SchoolOutDto> SchoolList { get; set; } /// <summary> /// 筛选数据后的列 阅读全文
posted @ 2024-10-01 20:36 Hey,Coder! 阅读(124) 评论(0) 推荐(0)
摘要: 除了常规的设置 WindowState="Maximized" WindowStyle="None" ResizeMode="NoResize" 以外需要手动激活一下窗口 if (this.IsVisible) { //避免影响popup显示 //this.Hide(); //this.Show() 阅读全文
posted @ 2024-09-29 23:18 Hey,Coder! 阅读(90) 评论(0) 推荐(0)
摘要: 下载固定版本的包,使用解压缩工具解压缩 https://developer.microsoft.com/zh-cn/microsoft-edge/webview2/?form=MA13LH#download-section wpf中加载这个目录 Webview2_129为测试的目录 var envP 阅读全文
posted @ 2024-09-26 16:20 Hey,Coder! 阅读(554) 评论(0) 推荐(0)
摘要: legacy IBM formatted bits like EBCDIC, big endian and floating point using (var stream = File.OpenWrite("punchcard.bin")) using (var writer = new Bina 阅读全文
posted @ 2024-09-24 22:50 Hey,Coder! 阅读(13) 评论(0) 推荐(0)
摘要: 网上提供的方案描述都不太清晰,主要需要注意的是Py中使用的是pkcs1标准,注意这一点即可 使用AES加密时候需要注意填充模式 py import os import uuid import base64 import wmi import json from datetime import dat 阅读全文
posted @ 2024-09-20 15:52 Hey,Coder! 阅读(25) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/questions/20363100/wpf-popup-location-issue HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows REG_SZ: M 阅读全文
posted @ 2024-09-20 12:29 Hey,Coder! 阅读(42) 评论(0) 推荐(0)
摘要: /// <summary> /// Use this Classes static methods to initialize and inject touch input. /// </summary> public class NativeMethods { /// <summary> /// 阅读全文
posted @ 2024-09-13 15:08 Hey,Coder! 阅读(39) 评论(0) 推荐(0)
摘要: IsManipulationEnabled 通过控件的IsManipulationEnabled属性设置为true激活触屏手势操作( ManipulationStarting、ManipulationStarted、ManipulationDelta、ManipulationInertiaStart 阅读全文
posted @ 2024-09-10 14:33 Hey,Coder! 阅读(63) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 46 下一页