会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
会挽雕弓如满月
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
23
24
25
26
27
28
29
30
31
···
33
下一页
2018年12月15日
Git 将本地库添加到远程仓库
摘要: git remote add origin ssh://admin@127.0.0.1:29418/Prjs/prj1.git git push -u origin master
阅读全文
posted @ 2018-12-15 14:38 梦醒江南·Infinite
阅读(217)
评论(0)
推荐(0)
2018年11月27日
C# float与UInt16互转
摘要: //float拆分成两个UInt16 public static UInt16 FloatToTwoUInt16(float f) { byte[] bs = BitConvert.GetBytes(); UInt16 low = BitConverter.ToUInt16(bs, 0); UInt16 high = BitConvert.ToUInt1...
阅读全文
posted @ 2018-11-27 14:03 梦醒江南·Infinite
阅读(3934)
评论(0)
推荐(1)
2018年11月23日
gitblit删除版本库
摘要: Git客户端不提供删除远程仓库的方法,gitblit服务器网页也不支持删除版本仓库。若要强制删除,Windows下可以: 先在任务管理器中停止gitblit进程,然后将gitblit版本库文件夹中将版本库删除,最后重启服务。
阅读全文
posted @ 2018-11-23 23:29 梦醒江南·Infinite
阅读(3919)
评论(1)
推荐(1)
2018年11月16日
bat循环打印输出1到10
摘要: 关键词:for cmd中查看帮助: for /? 循环一个数字序列: 示例: 示例结果:
阅读全文
posted @ 2018-11-16 23:19 梦醒江南·Infinite
阅读(11508)
评论(0)
推荐(0)
2018年9月16日
C# 正则表达式匹配盘符
摘要: if (!Regex.IsMatch(diskName, @"^[c-zC-Z](:\\)?$")) { throw new FormatException($"{diskName} is not an effective disk name."); }
阅读全文
posted @ 2018-09-16 16:10 梦醒江南·Infinite
阅读(599)
评论(0)
推荐(0)
2018年7月20日
WPF编程之找不到资源mainWindow.xaml
摘要: 原文: WPF编程之找不到资源“window1.xaml”之谜 因为将启动窗口移动到了一个新建的文件夹中,启动调试时报找不到资源mainWindow.xaml,原来是App.xaml里面设置的启动窗口的路径发生变化了,添加相对路径就可以启动了。
阅读全文
posted @ 2018-07-20 22:58 梦醒江南·Infinite
阅读(3537)
评论(0)
推荐(0)
2018年7月17日
VS2015 生成事件 命令参数
摘要: 来源:https://stackoverflow.com/questions/11001822/copy-files-from-one-project-to-another-using-post-build-event-vs2010
阅读全文
posted @ 2018-07-17 14:19 梦醒江南·Infinite
阅读(236)
评论(0)
推荐(0)
2018年6月20日
XAML绑定到资源文件字符串时失败
摘要: 参考:https://stackoverflow.com/questions/19586401/error-in-binding-resource-string-with-a-view-in-wpf 选中资源文件,右键->属性,“自定义工具”输入PublicResXFileCodeGenerator
阅读全文
posted @ 2018-06-20 18:06 梦醒江南·Infinite
阅读(181)
评论(0)
推荐(0)
VS2015 将*.xaml.cs文件包裹在*.xaml文件下
摘要: 原文:https://stackoverflow.com/questions/13387527/add-existing-xaml-files-to-visual-studio-2012Right-click the project and select "Unload Project" Right
阅读全文
posted @ 2018-06-20 16:26 梦醒江南·Infinite
阅读(210)
评论(0)
推荐(0)
2018年6月6日
Git基础(四) 查看已暂存和未暂存的修改
摘要: 比较工作目录中当前文件和暂存区域快照之间的差异(也就是修改之后还没有暂存起来的变化内容) 比较已暂存的将要添加到下次提交里的内容 Git 1.6.1及更高版本还
阅读全文
posted @ 2018-06-06 09:31 梦醒江南·Infinite
阅读(471)
评论(0)
推荐(0)
上一页
1
···
23
24
25
26
27
28
29
30
31
···
33
下一页
公告