Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 2.59 KB

using-views.md

File metadata and controls

39 lines (25 loc) · 2.59 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Using Views
Using Views
11/04/2016
interacting with users and role of view class [MFC]
drawing [MFC], data
rendering data
view classes [MFC], role in managing user interaction
CView class [MFC], view architecture
MFC, views
views [MFC], using
painting data
user input [MFC], interpreting through view class [MFC]
view classes [MFC], role in displaying application data
dc3de6ad-5c64-4317-8f10-8bdcc38cdbd5

Using Views

The view's responsibilities are to display the document's data graphically to the user and to accept and interpret user input as operations on the document. Your tasks in writing your view class are to:

  • Write your view class's OnDraw member function, which renders the document's data.

  • Connect appropriate Windows messages and user-interface objects such as menu items to message-handler member functions in the view class.

  • Implement those handlers to interpret user input.

In addition, you may need to override other CView member functions in your derived view class. In particular, you may want to override OnInitialUpdate to perform special initialization for the view and OnUpdate to do any special processing needed just before the view redraws itself. For multipage documents, you also must override OnPreparePrinting to initialize the Print dialog box with the number of pages to print and other information. For more information on overriding CView member functions, see class CView in the MFC Reference.

What do you want to know more about

See also

Document/View Architecture
CFormView Class
Record Views (MFC Data Access)
Bypassing the Serialization Mechanism