如题,谢谢!
也可以发到我信箱,[email protected]

解决方案 »

  1.   

    什么意思?vcl组件的属性?帮助文件就是最好的!
      

  2.   

    不好意思,我没说清楚。比如这个:
    property Day:integer read GetDate write SetDate。
    总是搞不清楚这是怎么回事。
    谢谢!
      

  3.   

    property Day:integer read GetDate write SetDate。 
    比如:
    Day := 1
    则通过SetDate方法来处理
    var
      D:integer;
    begin
      D := Day;//怎通过GetDate方法来处理。
    ...
    end;property是Delphi的一种封装方法。
      

  4.   

    http://dev.rdxx.com/Delphi/KongJDev/2001-10/27/132530551.shtml 
    试着写一遍 就会了