上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 46 下一页
摘要: 可通过这些命令实现统一管理工具 //开机 VBoxManage startvm "vm_name" VBoxManage startvm 虚拟机名 --type headless //强制停止虚拟机 VBoxManage controlvm "vm_name" poweroff //显示列表虚拟机| 阅读全文
posted @ 2023-09-25 15:15 Hey,Coder! 阅读(53) 评论(0) 推荐(0)
摘要: 考虑服务执行权限问题 阅读全文
posted @ 2023-09-25 14:10 Hey,Coder! 阅读(54) 评论(0) 推荐(0)
摘要: 调用方法如下 var exec = new ProcessCommandBase("test.exe"); exec.AddParameter("list vms"); var result = exec.Exec(true); 完整帮助类如下 public class ProcessCommand 阅读全文
posted @ 2023-09-25 13:21 Hey,Coder! 阅读(232) 评论(0) 推荐(0)
摘要: public static class FocusBehavior { private static Dictionary<UIElement, RoutedEventHandler> handlers = new Dictionary<UIElement, RoutedEventHandler>( 阅读全文
posted @ 2023-09-22 10:58 Hey,Coder! 阅读(113) 评论(0) 推荐(0)
摘要: 元素代码来源 github CrissCross项目 需要两个工具类及一个webview2的封装类 // Copyright (c) Chris Pulman. All rights reserved. // Licensed under the MIT license. See LICENSE f 阅读全文
posted @ 2023-09-21 13:54 Hey,Coder! 阅读(838) 评论(1) 推荐(0)
摘要: 通过webview2下载文件时候会将文件保存在用户的默认下载目录, 如果想调整成通过弹窗选择下载路径的方式则需要将默认行为做出修改。 本文通过CoreWebView2_DownloadStarting 这个事件来调整下载路径, 基本思路为通过弹窗让用户选择需要保存的路径,如果用户取消了此操作则通过这 阅读全文
posted @ 2023-09-18 14:41 Hey,Coder! 阅读(978) 评论(0) 推荐(0)
摘要: skywaling安装目录在windows 环境上最好目录不要带空格 9.4.0版本需要 java11 安装好java后直接启动bin目录下startup.bat 启动后通过8080端口访问dashboard .net安装nuget包【SkyAPM.Agent.AspNetCore】 添加配置文件s 阅读全文
posted @ 2023-09-18 09:08 Hey,Coder! 阅读(27) 评论(0) 推荐(0)
摘要: linux下安装vscode后需要安装几个插件 ![](https://img2023.cnblogs.com/blog/944369/202309/944369-20230908164111108-1893019154.png) ![](https://img2023.cnblogs.com/bl 阅读全文
posted @ 2023-09-08 16:50 Hey,Coder! 阅读(222) 评论(0) 推荐(0)
摘要: 本文测试环境为deepin系统,其他系统操作基本一致 1. 确保ssh开启 ``` sudo apt-get install openssh-server sudo systemctl start sshd ``` 2. 安装vnc server ``` sudo apt install x11vn 阅读全文
posted @ 2023-09-08 16:16 Hey,Coder! 阅读(523) 评论(0) 推荐(0)
摘要: 如果需要在运行时调用T4模板,一般有以下几种方式 1. 通过TextTransform.exe传递参数的模式(https://www.cnblogs.com/ives/p/8760661.html) 2. 通过运行时T4脚本生成的对象调用(https://www.cnblogs.com/ives/p 阅读全文
posted @ 2023-09-01 14:48 Hey,Coder! 阅读(541) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 46 下一页