摘要: std::wcout.imbue(std::locale("chs")); std::wcout << L"按下回车开始注入!"; 阅读全文
posted @ 2022-05-09 18:57 hack747 阅读(231) 评论(0) 推荐(1) 编辑
摘要: string UserImg = "http://q4.qlogo.cn/g?b=qq&nk=8583048&s=100"; User.Source = new BitmapImage(new Uri(UserImg)); ; 阅读全文
posted @ 2022-05-08 10:42 hack747 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 其实图片上传时使用文件控件最为方便,但如何考虑到数据库存储等,可以可虑转换为字节流。 Bitmap => byte[] Bitmap b = new Bitmap( "test.bmp "); MemoryStream ms = new MemoryStream(); b.Save(ms,Syste 阅读全文
posted @ 2022-05-06 14:49 hack747 阅读(1846) 评论(0) 推荐(0) 编辑
摘要: public void ReNewHelper() { new Thread(() => { string strInput = "ipconfig/renew"; Process p1 = new Process(); //设置要启动的应用程序 p1.StartInfo.FileName = "c 阅读全文
posted @ 2022-05-05 10:22 hack747 阅读(711) 评论(0) 推荐(0) 编辑
摘要: WindowStartupLocation="CenterScreen" 阅读全文
posted @ 2022-05-05 09:41 hack747 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 蓝奏云下载地址https://wws.lanzoux.com/b01tqirzc Navicat16目前没有破解方法,15可以,够用了 两个下载好了之后都安装上,先不要打开,注意:然后断网!断网!断网! 然后管理员身份打开Nacicat_key,点击右上角patch 5.然后选择安装文件夹的navi 阅读全文
posted @ 2022-05-03 13:28 hack747 阅读(16974) 评论(3) 推荐(2) 编辑
摘要: 用这个命令ipconfig/release这个命令是释放的意思, ipconfig/renew这个就是更新的意思了. 至于ipconfig的其他相关命令你可以通过命令ipconfig/?查看关于它的其他命令 阅读全文
posted @ 2022-05-03 13:28 hack747 阅读(628) 评论(0) 推荐(0) 编辑
摘要: string str = "中国"; byte[] bufOfGB = System.Text.Encoding.GetEncoding("gb2312").GetBytes(str); Array.ForEach(bufOfGB,m=>Console.WriteLine(m)); Console. 阅读全文
posted @ 2022-05-02 20:43 hack747 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 首先 yum install gcc 安装完成后 gcc -o 指定文件名 文件(gcc -o hello hello.c) 另外 对pthread_create未定义的引用 pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,在编译中要加-lpthread(放在命 阅读全文
posted @ 2022-04-27 18:26 hack747 阅读(93) 评论(0) 推荐(0) 编辑
摘要: <Button x:Name="btnMin" Content="―" Style="{StaticResource MaterialDesignFlatMidBgButton}" /> <Button x:Name="btnMax" Content="☐" Style="{StaticResour 阅读全文
posted @ 2022-04-27 10:54 hack747 阅读(200) 评论(0) 推荐(0) 编辑