Button.Caption := 'xxxxxxx'+#13+'xxxxxxxxxx'
试试?我也不知道行不

解决方案 »

  1.   

    可以以Button为父类,另建一个Button控件,然后再增加一个Wrap这样的属性就可以做到了。
      

  2.   

    继承BUTTON控件,
    把新控件的显示Caption 自己画出来.可以用到的函数
    int DrawText(    HDC hDC, // handle to device context 
        LPCTSTR lpString, // pointer to string to draw 
        int nCount, // string length, in characters 
        LPRECT lpRect, // pointer to structure with formatting dimensions  
        UINT uFormat  // text-drawing flags 
       );
     
      

  3.   

    也可以试试,不继承,
    直接在重画事件中,
    取得Button窗口句柄.调用DrawText画
      

  4.   

      或则做个hint顶着用  dreamweaver里也有写按扭是那样的