上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 47 下一页
摘要: 网上提供的方案描述都不太清晰,主要需要注意的是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! 阅读(32) 评论(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! 阅读(47) 评论(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! 阅读(49) 评论(0) 推荐(0)
摘要: IsManipulationEnabled 通过控件的IsManipulationEnabled属性设置为true激活触屏手势操作( ManipulationStarting、ManipulationStarted、ManipulationDelta、ManipulationInertiaStart 阅读全文
posted @ 2024-09-10 14:33 Hey,Coder! 阅读(72) 评论(0) 推荐(0)
摘要: 添加一个支持多点触摸的画布 /// <summary> /// 支持多点触摸的InkCanvas /// </summary public class MultiTouchCanvas : FrameworkElement { private InkCanvasProxy _inkCanvas = 阅读全文
posted @ 2024-09-10 14:26 Hey,Coder! 阅读(90) 评论(0) 推荐(0)
摘要: 动态绑定触摸事件 btnChangeErase.AddHandler(TouchDownEvent, new RoutedEventHandler(btnChangeErase_TouchDown), true); btnChangeErase.AddHandler(TouchUpEvent, ne 阅读全文
posted @ 2024-08-29 22:28 Hey,Coder! 阅读(28) 评论(0) 推荐(0)
摘要: 可以在github下载 https://github.com/nesherhh/MultiTouchVista/releases/tag/v1.0 https://github.com/nesherhh/MultiTouchVista 下载解压后进入Driver/x64目录使用管理员权限执行Inst 阅读全文
posted @ 2024-08-29 19:25 Hey,Coder! 阅读(243) 评论(0) 推荐(0)
摘要: 安装nuget SharpZipLib 1.4.2 public class ZipHelper { /// <summary> /// 压缩文件/文件夹 /// </summary> /// <param name="filePath">需要压缩的文件/文件夹路径</param> /// <par 阅读全文
posted @ 2024-08-21 15:16 Hey,Coder! 阅读(44) 评论(0) 推荐(0)
摘要: 可以通过github加速访问 https://gh.api.99988866.xyz/ 制作镜像 sudo dd if=/dev/sdb of=/your/path/to/customOS.img 也可以通过Win32DiskImager在windows平台制作镜像 缩小工具 # 1. 安装缩小工具 阅读全文
posted @ 2024-08-20 16:54 Hey,Coder! 阅读(127) 评论(0) 推荐(0)
摘要: 虚拟机设置共享目录 挂载 mkdir /mnt/hgfs mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other cd /mnt/hgfs/ ls 阅读全文
posted @ 2024-08-20 16:47 Hey,Coder! 阅读(74) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 47 下一页