首页 > 2016年09月27日 > 全部分享
sass折腾
1 $blue : #1875e7; div { color : $blue; }2可以嵌套 div { hi { color:red; } } border-color p { border: { color: red; } } a { &:hover { color: #ffb3ff; } }3 ...
分类:其他   时间:2016-09-27 17:55:17    收藏:0  评论:0  赞:0  阅读:184
Spring Security(15)——权限鉴定结构
目录 1.1 权限 1.2 调用前的处理 1.2.1 AccessDecisionManager 1.2.2 基于投票的AccessDecisionManager实现 1.3 调用后的处理 1.4 角色的继承 1.1 权限 所有的Authentication实现类都保存了一个GrantedAutho ...
分类:编程语言   时间:2016-09-27 17:55:07    收藏:0  评论:0  赞:0  阅读:285
修改远程桌面连接端口3389,RDP-Tcp的portnumber要用十六进制修改
1. 运行regedit 2. 展开 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp\ 修改 portnumber (此处可用十进制修改) 3. 展开 HKEY_LOCAL_M ...
分类:其他   时间:2016-09-27 17:54:58    收藏:0  评论:0  赞:0  阅读:876
linux性能分析常用的命令
1,uptime 查看系统负责2,more 分页查看文件,enter显示下一行,空格显示下一页,F显示下一屏,B显示上一屏内容。3,top命令查看系统情况,按shif + H可以查看当前线程的负载。4,top -p pid 可以查看基于某个进程的线程的系统负载情况。5,df -h 查看硬盘占用情况, ...
分类:系统服务   时间:2016-09-27 17:54:50    收藏:0  评论:0  赞:0  阅读:196
MVVM: 通过 x:Bind 实现 MVVM(不用 Command)
背水一战 Windows 10 之 MVVM(Model-View-ViewModel) 通过 x:Bind 实现 MVVM(不用 Command) 示例1、ModelMVVM/Model/Product.cs MVVM/Model/ProductDatabase.cs 2、ViewModelMVV ...
分类:其他   时间:2016-09-27 17:54:38    收藏:0  评论:0  赞:0  阅读:303
控件 UI: 字体的自动继承的特性, Style, ControlTemplate
字体的自动继承的特性 Style 样式 ControlTemplate 控件模板 示例1、演示字体的自动继承的特性Controls/UI/FontInherit.xaml 2、演示“Style”相关知识点Controls/UI/Style.xaml Controls/UI/Style.xaml.cs ...
分类:其他   时间:2016-09-27 17:54:19    收藏:0  评论:0  赞:0  阅读:201
关于企业内部应用部署到网站提供下载(不需要发布到 AppStore)
收录关于 iOS 企业版应用发布流程网站 关于 App 账号:https://my.oschina.net/u/1025290/blog/299040 关于企业版应用证书的制作:http://blog.csdn.net/u010856537/article/details/51657775 关于打包 ...
分类:移动平台   时间:2016-09-27 17:54:09    收藏:0  评论:0  赞:0  阅读:259
【Debug 报异常】Debug打断点报错
用DEBUG启动项目,项目中打断点的,然后会报异常 解决方法: 第一步: 项目-->Java编译器-->Classfile Generation 复选框 全部勾选 第二步: 替换当前文件运行的JRE为sun提供的,不能是Eclipse自带的JRE Window >preferences >java ...
分类:其他   时间:2016-09-27 17:54:01    收藏:0  评论:0  赞:0  阅读:355
绑定: 通过 Binding 绑定对象, 通过 x:Bind 绑定对象, 通过 Binding 绑定集合, 通过 x:Bind 绑定集合
背水一战 Windows 10 之 绑定 通过 Binding 绑定对象 通过 x:Bind 绑定对象 通过 Binding 绑定集合 通过 x:Bind 绑定集合 示例1、演示如何通过 Binding 绑定对象Bind/BindingModel.xaml Bind/BindingModel.xam ...
分类:其他   时间:2016-09-27 17:53:50    收藏:0  评论:0  赞:0  阅读:295
控件(按钮类): ButtonBase, Button, HyperlinkButton, RepeatButton, ToggleButton, AppBarButton, AppBarToggleButton
介绍背水一战 Windows 10 之 控件(按钮类) ButtonBase Button HyperlinkButton RepeatButton ToggleButton AppBarButton AppBarToggleButton 示例1、ButtonBase(基类) 的示例Controls ...
分类:移动平台   时间:2016-09-27 17:53:43    收藏:0  评论:0  赞:0  阅读:265
控件(文本类): AutoSuggestBox
Controls/TextControl/AutoSuggestBoxDemo.xaml Controls/TextControl/AutoSuggestBoxDemo.xaml.cs ...
分类:其他   时间:2016-09-27 17:53:23    收藏:0  评论:0  赞:0  阅读:220
第三次作业
2.利用程序huff_enc和huff_dec进行以下操作(在每种情下,利用由被压缩生成的码本)。 (a)对Sena、Sensin和Omaha图像进行编码。 解:用表格的形式给出对应文件压缩前后的大小为(单位用字节表示) 图像名称 压缩前 压缩后 压缩率 Sena 64kb 56.1kb 0.88 ...
分类:其他   时间:2016-09-27 17:53:12    收藏:0  评论:0  赞:0  阅读:124
linux 如何查看防火墙是否开启
ervice iptables status可以查看到iptables服务的当前状态。但是即使服务运行了,防火墙也不一定起作用,你还得看防火墙规则的设置 iptables -L在此说一下关于启动和关闭防火墙的命令: 1) 重启后生效 开启: chkconfig iptables on 关闭: chk ...
分类:系统服务   时间:2016-09-27 17:53:05    收藏:0  评论:0  赞:0  阅读:207
css3 倒影
说起倒影效果,在传统网页中,我们只能使用photoshop进行事先将倒影设计好,然后导入到网页中,这样不但耗费资源,也阻碍了开发的效率。而 css3新增了Reflections板块,css Reflections允许css设计倒影。 目前, css Reflections仅获得webkit引擎的支持 ...
分类:Web开发   时间:2016-09-27 17:52:53    收藏:0  评论:0  赞:0  阅读:239
Fedora22编译Qt3.3.X
FC22编译QT3笔记 安装g++ dnf install gcc-c++ 1,configure ./configure -thread -no-nis -system-libpng -system-libjpeg -system-libmng -system-zlib - nomake exam ...
分类:其他   时间:2016-09-27 17:52:43    收藏:0  评论:0  赞:0  阅读:427
page、request、session、application区别【转载】
(1)直接在web contain中进行对象的实例化。 内置对象 类型 作用域 pageContext javax.servlet.jsp.pageContext page request javax.servlet.http.HttpServletRequest request response ...
分类:移动平台   时间:2016-09-27 17:52:33    收藏:0  评论:0  赞:0  阅读:238
HTML5之表单新增属性
之前已经接触过的新增属性:autocomplete、autofocus、list、multiple、placeholder、required、min、max、step from属性:将表单外的内容与表单进行关联 <form action="" id="kc" > <input type="text" ...
分类:Web开发   时间:2016-09-27 17:52:24    收藏:0  评论:0  赞:0  阅读:159
IOS开发UIButton详解
按钮在普通状态和高亮状态颜色的设置 [_button1 setTitleColor:[UIColor yellowColor] forState:UIControlStateHighlighted]; //在按钮被按下去的,按钮的整个会变成黄色 [_button1 setTitleColor:[UI ...
分类:移动平台   时间:2016-09-27 17:52:14    收藏:0  评论:0  赞:0  阅读:136
UI: 多窗口
1、自定义帮助类,用于简化 SecondaryView 的管理UI/MultipleViews/SecondaryViewHelper.cs 2、扩展 Application 对象,定义一些需要用到的全局变量UI/MultipleViews/AppPartial.cs 3、用于演示 Secondar ...
分类:其他   时间:2016-09-27 17:52:05    收藏:0  评论:0  赞:0  阅读:127
UI: 标题栏
TitleBarDemo.xaml TitleBarDemo.xaml.cs ...
分类:其他   时间:2016-09-27 17:51:57    收藏:0  评论:0  赞:0  阅读:135
1410条   上一页 1 ... 23 24 25 26 27 ... 71 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!