一、基本线条二、特效(效果并不是孤立的,可相互组合) 1、两头渐变透明: 2、纺锤形: 3、右边渐变透明: 4、左边渐变透明: 5、虚线: 6、双线: 7、立体效果: 8、钢针效果: 9.垂直分割线 align 线条位置(可选left、right、center);width 线条长度;color 颜...
分类:
其他好文 时间:
2014-08-07 18:35:11
阅读次数:
208
CRect rect;
GetWindowRect(rect);//该函数返回指定窗口的边框矩形的尺寸。该尺寸以相对于屏幕坐标左上角的屏幕坐标给出。
//rect获得的坐标为当前窗体的坐标,对于显示器屏幕的最左上角为(0,0)点坐标,向下移动多少就加值多少
//假设要显示的对话框宽320,高140,(320,140),left、right是X轴坐标,left-right则为宽父窗体的宽,同理...
分类:
其他好文 时间:
2014-08-07 13:10:00
阅读次数:
374
一:页面代码 登录 0 客服 顶部二:Css样式/*侧边栏(购物车,客服)*/.right_lan{ position:fixed;right:0; _right:-1px; top:0; width:35px; height:100%;_height:400px; backgrou...
分类:
其他好文 时间:
2014-08-07 12:12:39
阅读次数:
228
题目:Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified. You ....
分类:
编程语言 时间:
2014-08-07 07:14:10
阅读次数:
257
qccs定义圆角border-radius:10px;如果想给特定位置定义圆角,如:左上角:border-left-top-radius:10px;右下角色:border-right-bottom-rasius:10px;半透明效果只需要在css中使用rgba(100,100,100,40)这种形式...
分类:
其他好文 时间:
2014-08-06 22:41:52
阅读次数:
247
问题:输出二叉树的每一行的结点,从叶子到根/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(i...
分类:
其他好文 时间:
2014-08-06 22:04:02
阅读次数:
185
Step 1
Open MongoVUE and connect to the server that contains the collection “cities”
Step 2
Right-click on “cities” collection under “Database Explorer”, and select “MapReduce”. This will laun...
分类:
数据库 时间:
2014-08-06 19:07:42
阅读次数:
352
1.二叉树的相关算法的实现(链表)。
#include
#include
#define NULL 0
typedef struct tree
{
int data;
struct tree *left, *right;
}ElemBT;
void create_btree(ElemBT *root, int list[], int n) /*n表示list数组中元素的个数*/
{...
分类:
其他好文 时间:
2014-08-06 12:00:01
阅读次数:
183
要实现的就是类似于Actionbar标签的那种效果,底部有一条指示条。
实现代码:
实现的关键是写上android:top="-6dp" android:left="-6dp" android:right="...
分类:
移动开发 时间:
2014-08-06 02:02:40
阅读次数:
266
#lang scheme
( define nil '() )
( define ( root tree )( car tree ) )
( define ( left-tree tree )( cadr tree ) )
( define ( right-tree tree )( caddr tree ) )
( define ( height tree )
( con...
分类:
其他好文 时间:
2014-08-05 22:45:53
阅读次数:
244