Label

    Alignment                设置标签文字的对齐方式 
    Transparent            设置Label 是否透明 如果为True 就可以看到label的背景了 
    Wordwrap                label文字是否自动换行  

edit

    Autoselect                设置当前edit的组件获取焦点时是否将文本全部选中
    borderstyle               组件样式 
    charcase                  设置edit内文字的样式格式  普通 转换大写 转换小写  
    clolor                         颜色
    maxlength                文本框最大文字长度
    passwordchar         输入密码显示特殊字符 
    Readonly                  只读

memo
memo1.lines[0]:='this is first line';             将首行的内容改为 'this is first line'
memo1.lines.add('add line');                      在最后添加一行,内容为 'add line'
memo1.lines.delete(0);                               将第一行删除
memo1.lines.insert(1,'inert one line');      在第二行处添加
memo1.lins.loadfromfile('c:\readme.txt'); 从文本文件中装载字符串组

RadioButton,CheckBox(单选,复选)
if RadioButton.Checked then 
label.caption:='RadioButton.Caption';
if CheckBox.Checked then 
label.caption:='CheckBox.Caption';

Posted on 2011-03-23 22:37  dekill  阅读(189)  评论(0编辑  收藏  举报