CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 1999
    Posts
    388

    What is owner drawn control?

    Can somebody explain me what is an owner drawn control? Is not this a common control?
    thankx for any help
    Shahzad


  2. #2
    Join Date
    May 1999
    Posts
    42

    Re: What is owner drawn control?

    An owner-draw control is one that you, the programmer and owner of the application, are responsible for drawing. For example, if you create a pushbutton, Windows will draw it for you. If you create a pushbutton and one of the styles is owner draw, you are responsible for writing the code that draws the button -- borders, text, background, everything. Windows will tell you when it needs to be drawn.


  3. #3
    Join Date
    May 1999
    Posts
    388

    thankx, that was exactly what i need to know

    thankx for the help, that was exactly what i need to know.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured