Qt Custom Widget Size
I am writing a custom widget with qt. I was wondering if there was a way that I could hard code the width of the widget so it will always remain that size?
T开发者_C百科hanks
widget->SetFixedWidth(myWidth);
widget->SetFixedHeight(myHeight);
widget->SetFixedSize(mySize);
精彩评论