The information in this article applies to:
SUMMARY
A statusbar control has some diagonal lines in the right lower corner
called the sizing grip, that can be used to resize the window.
Occasionally, a programmer may want to remove this grip to prevent the user
from resizing the window. MORE INFORMATIONYou can remove the sizing grip by deriving a class from CStatusBar and overriding PreCreateWindow() to change the styles that are used. Inside of PreCreateWindow(), you must also remove the SBARS_SIZEGRIP style. For example:
You can then replace your custom CStatusBar derived class with the default
one.For example, if this is the statusbar in the main frame window, you would then include the header file for your CStatusBar derived class in your Mainfrm.h file. Also in your Mainfrm.h file, you would change the declaration of the statusbar created in your Mainfrm.cpp file to use that class. REFERENCESFor additional information, please see the following article in the Microsoft Knowledge Base: Q99161 HOWTO: Derive From Classes not Listed in ClassWizard Additional query words: kbvc500 kbvc600
Keywords : kbMFC KbUIDesign kbVC |
Last Reviewed: July 29, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |