LinearLaout 标签是 一种接口组件的编排方式
android:orientation="vertical"
android;layout_width="fill_parent"
android;layout_height="fill_parent"
>
android:orientation="方式"
这个方式有两种:"vertical" 垂直 方式 ...
分类:
其他好文 时间:
2014-09-25 14:33:49
阅读次数:
740
首先来说说As是干什么的:代码:void OnMouseEnter(object sender, MouseEventArgs e){ Ellipse ell = sender as Ellipse; //就它了 ell.Fill = new SolidColorBrush(Colors...
分类:
其他好文 时间:
2014-09-25 13:52:49
阅读次数:
176
1,标签
标签闪亮登场了。当LayoutInflater遇到这个标签时,它会跳过它,并将内的元素添加到的父元素里。迷惑了吗?让我们用来替换FrameLayout,并重写之前的XML布局:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
...
分类:
移动开发 时间:
2014-09-22 15:55:32
阅读次数:
293
最近在搞 andorid 的时候 会很纠结 match_parent和fill_parent 有什么
区别?
match_parent和fill_parent
都是填充 父控件,android2.2(API8)之前都是用 fill_parent!
API8 之后的新版本都是用 match_parent;
wrap_content 大家都知道 就是 ...
分类:
其他好文 时间:
2014-09-19 12:03:45
阅读次数:
168
如果在常见中有多个物体,想要对某一个物体进行做旋转,位移,缩放等动作,其他物体不受影响,此时就可以用pushMartrix和popMartrix来控制物体。eg:fill(255);
rect(0,0,50,50);//Whiterectangle
pushMatrix();
translate(30,20);
fill(0);
rect(0,0,50,50);//Blackrectangle..
分类:
其他好文 时间:
2014-09-18 09:55:24
阅读次数:
212
无疑是STL 中最大的一个头文件,它是由一大堆模板函数组成的。下面列举出中的模板函数:adjacent_find / binary_search / copy / copy_backward / count/ count_if / equal / equal_range / fill / fill_...
分类:
其他好文 时间:
2014-09-14 20:43:37
阅读次数:
280
1,在XML中绑定
xmlns:toolbox="clr-namespace:EBookApp.Toolbox"
<Image x:Name="imageShort" Stretch="Fill" Width="50" d:LayoutOverrides="HorizontalMargin"
Source="{Binding RelativeSou...
分类:
其他好文 时间:
2014-09-12 11:57:03
阅读次数:
157
大家都知道 -webkit-animation-fill-mode 属性是检索或设置对象动画时间之外的状态,但是一直以来我对它的属性值都存在一个疑问,both和forwards的使用到底有什么区别呢?经过不停的测试、搜索,个人认为差别在于:both是设置对象状态为动画结束或开始的状态,主要是取决于-...
分类:
Web程序 时间:
2014-09-11 13:47:21
阅读次数:
263
Problem D
FILL
There are three jugs with a volume of a, b and c liters. (a, b, and c are positive integers not greater than 200). The first and the second jug are initially empty, while the thi...
分类:
其他好文 时间:
2014-09-11 09:42:51
阅读次数:
210
android中布局一般都有两种方式,一种xml声明,另外一种则是程序声明:
xml:
xml version="1.0" encoding="utf-8"?>
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
分类:
移动开发 时间:
2014-09-08 02:11:56
阅读次数:
270