Windows开发-周排行
由于项目需要,最近写了一个数字输入文本框,在此作个备忘。 1.代码调用 <controls:NumericBox Height="32" Width="80" MinValue ="0" MaxValue="100" Digits ="0" CurValue="{Binding LabelSize, ...
分类:Windows开发 时间:2017-01-12 02:54:02 收藏:0 阅读:1005
前言 google的翻译不得不承认它是比较好的。但是google翻译对外提供的翻译接口都是收钱的,做为一名普普通通的开发者,囊中羞涩,因此就需要借助技术的力量来完成免费的翻译接口的调用。 git 首先在github上我们找到了这篇链接 https://github.com/ssut/py-googl ...
分类:Windows开发 时间:2017-03-24 19:09:05 收藏:0 阅读:2241
一台机器使用自行编译版本引擎修改了工程后,另一台机器也使用自行编译版本引擎编辑该工程,有时会出现标题的提示 解决办法: 打开\Engine\Binaries\Win64\UE4Editor.modules,把编辑过工程的机器的BuildId 复制到出现提示的机器中 然后逐个检查插件,同样保持一致: ...
分类:Windows开发 时间:2017-04-01 16:47:19 收藏:0 阅读:5212
#region 图片转为base64编码的字符串 public string ImgToBase64String(string Imagefilename) { try { Bitmap bmp = new Bitmap(Imagefilename); MemoryStream ms = new M ...
分类:Windows开发 时间:2017-07-20 16:49:49 收藏:0 阅读:1644
如果你想了解关于Qt与VS2013开发环境搭建,可以至此翻页。 这里主要分享环境已搭建成功,在构建项目时遇到的报错解决方案。 【1】Qt 与 VS2013开发环境构建时报错 报错界面如下: 注意:对话框左上角的Qt Visual Studio Add-in。 【2】解决方案 为了更充分的解决问题,分 ...
分类:Windows开发 时间:2017-09-12 20:23:15 收藏:0 阅读:5493
1:设置右边自动滑动条:VerticalScrollBarVisibility="Auto" 2:设置自动换行:TextWrapping="Wrap" AcceptsReturn="True" 3:C#程序控制文本滚动至底部:DebugBoxText.ScrollToEnd(); ...
分类:Windows开发 时间:2017-10-18 09:29:58 收藏:0 阅读:582
重装系统和opencv,编译运行显示一副图像的程序,报错如下 根据提示安装gtk2.0和pkg-config,运行不了,仔细看。 我们进入到opencv源代码库,找到highgui库下面,具体路径“/home/liurf/opencv/modules/highgui”,依次运行“cmake .”," ...
分类:Windows开发 时间:2017-11-22 12:48:42 收藏:0 阅读:6272
可用于系统定时日志的创建 啊 运行之后 会在当前目录 创建以年月日为名的文件夹 可以灵活运用 ...
分类:Windows开发 时间:2017-12-14 12:40:50 收藏:0 阅读:631
一、修改部分字段By UpdateRequest client.prepareUpdate("ttl", "doc", "1") .setScript(new Script("ctx._source.gender = \"male\"" , ScriptService.ScriptType.INLI ...
分类:Windows开发 时间:2017-12-26 17:09:36 收藏:0 阅读:608
因为有CMake自动化配置工具,在Windows平台上安装Geant4与Linux平台几乎同样方便。与使用Linux不同的是,官方更鼓励使用集成开发环境Visual Studio (VS)来编译安装。下面简单介绍一下。 系统环境: Windows10, Visual Studio 2017 (com ...
分类:Windows开发 时间:2018-02-06 14:45:26 收藏:0 阅读:2822
最近公司项目需要对接Https接口,将对接的代码整理如下: ...
分类:Windows开发 时间:2018-05-26 00:28:41 收藏:0 阅读:405
1.get方法调用接口获取json文件内容 public void GetFunction() { string serviceAddress = "http://222.111.999.444:8687/tttr/usercrd/12/b7e50cb45a?userid=9999"; HttpWe ...
分类:Windows开发 时间:2018-06-11 13:12:33 收藏:0 阅读:831
对于前端的异常捕获,我们都会知道onerror事件,但针对window的error事件的用法,其实是有区别的。 方式一: window.onerror = handleOnError 1. 能捕获到js执行错误,不能捕获带有src的标签元素的加载错误。 2. 参数对应5个值(错误信息,所在文件,行, ...
分类:Windows开发 时间:2018-06-13 23:04:28 收藏:0 阅读:390
错误描述: $ git pull origin alphaFrom https://github.com/shirley-wu/HeartTrace * branch alpha -> FETCH_HEADerror: The following untracked working tree fil ...
分类:Windows开发 时间:2018-07-01 20:20:09 收藏:0 阅读:3468
**WindowsServer2016路由和远程访问**本次实验是将WindowsServer2016配置成一个路由器,通过路由和远程访问提供到专用网络的安全远程访问。使用路由和远程访问需配置下列内容:两个专用网络之间的安全连接。虚拟专用网络网关。拨号远程访问服务器网络地址转换(NAT)。LAN路由。基本防火墙。首先添加服务器角色在Windowsserver2016添加两个网卡,作为一个外网一个内
分类:Windows开发 时间:2018-08-01 13:47:19 收藏:0 阅读:787
1 git clean n //这个是清除文件预览 git clean -f //强制清除文件 2 git clean -f //强制清除文件 3 git checkout -f <branch> //不建议使用 容易丢失文件 ...
分类:Windows开发 时间:2018-09-15 19:50:33 收藏:0 阅读:546
tensorflow models api:ValueError: Tensor conversion requested dtype string for Tensor with dtype float32: 'Tensor("arg0:0", shape=(), dtype=float32, d ...
分类:Windows开发 时间:2018-11-13 13:38:39 收藏:0 阅读:3717
如果是为了编译hadoop2.8.0源码,必须使用2.5.0版本的protobuf,安装方法同下 1. 下载需要的安装包:https://github.com/google/protobuf/releases protoc-3.1.0-win32.zip(protoc-2.5.0-win32.zip ...
分类:Windows开发 时间:2018-12-10 12:58:58 收藏:0 阅读:899
今天使用FreeMarker生成数据时一直报错,错误信息是“The following has evaluated to null or missing:”,告知我找不到值。 但是我再三确认,这些属性的值都是正常的,也就是说某些原因造成FreeMarker无法读取到这些值。困扰了我将近两个小时后,经 ...
分类:Windows开发 时间:2019-01-23 23:02:21 收藏:0 阅读:2076
/// <summary> /// 为dataGridView添加“启动”“停止”两个按钮 /// </summary> private void AddBtndgv2() { DataGridViewButtonColumn btn = new DataGridViewButtonColumn() ...
分类:Windows开发 时间:2019-04-15 10:02:54 收藏:0 阅读:743
111121314154851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!