好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

WUIButton的BUG

WUIButton的BUG

WUIButton.h约400行的地方:
//main class for the button
template<typename ButtonStyleTraits = NormalTraits, COLORREF clrShade>

第二个模板参数没有默认参数,编译器报错,手动加个上去就好了如:
template<typename ButtonStyleTraits = NormalTraits, COLORREF clrShade = RGB(128, 128, 128)>

查看更多关于WUIButton的BUG的详细内容...

  阅读:39次