创建审批工作流时,竟然发现模板里没有审批工作流的模板,查了一下,需要在网站设置里对模板进行激活才行。To activate a workflow for a site collectionVerify that you have the following administrative creden...
分类:
其他好文 时间:
2014-07-31 20:15:47
阅读次数:
225
#include "cocos2d.h"#include "cocos-ext.h"USING_NS_CC;USING_NS_CC_EXT;using namespace ui; UIButton *button = UIButton::create(); button->setTouchEna.....
分类:
其他好文 时间:
2014-07-31 20:07:17
阅读次数:
163
共享一个自己在开发过程中搭建的android项目界面框架,便于提高开发效率。
主要功能:
1.使用Button自定义底部Tab和Title
2.点击底部Tab后使用Fragment切换页面
3.主页使用ViewPager滚动显示新闻图片
4.自定义类处理Fragment重叠回退问题...
分类:
移动开发 时间:
2014-07-31 17:18:37
阅读次数:
209
Getting StartedThe above code inserts a default button with a android icon to the right. The following attributes can be added to any BootstrapButtonb...
分类:
其他好文 时间:
2014-07-31 16:34:56
阅读次数:
303
以Button为例:一般Button有2个状态,按下和正常状态1.在res下新建drawable文件夹,用以存放自己的Drawable文件2.在drawable文件夹下新建按下和正常状态shape文件(是图片资源,则略过此步骤)3.新建Button背景Selector文件4.为Button的back...
分类:
移动开发 时间:
2014-07-31 12:09:26
阅读次数:
250
想背英语单词,于是尝试写个WinForm窗体,将单词录入数据库(好记心不如烂笔头,敲键盘也可以吧,边录入,边记).1.软件用的是VS2010,首先创建解决方案,创建Windows窗体应用程序:2.创建一个录入单词的窗体,添加相应的textbox、button、label.3.我是按照单词本添加的,依...
android获取自定义控件位置坐标,屏幕尺寸,标题栏,状态栏高度
1.获取自定义控件height
在本Activity中获取当前Activity中控件的height:
Button button = (Button)findViewById(R.id.button);
int buttonHeight = button.getHeight();
在Activity...
分类:
移动开发 时间:
2014-07-30 17:28:24
阅读次数:
196
Android的动画的使用,请参考。Android的动画,在设计方面,我有点不太理解,觉得这样搞很怪,因为在控件动画后,即使设置了停留在动画结束时的位置,我们也确实看到了控件停在那个位置,但其实该控件的真实位置还是在原来动画前的那里。举个例子,如果有个Button,你给它设置了动画,让它移动到其他位...
分类:
移动开发 时间:
2014-07-30 11:49:53
阅读次数:
229
///HTML组件///后面的字符串为这个控件的ID号///直线Line(WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');///按钮Button(WebBrowser1.Doc...
分类:
Web程序 时间:
2014-07-29 21:39:42
阅读次数:
303
//动态创建组件TEditprocedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton;Shift: TShiftState; X, Y: Integer);varEdit:TEdit;beginEdit:=Tedit.Cr...
分类:
其他好文 时间:
2014-07-29 21:30:22
阅读次数:
242