Skip to content

Commit 4536d5b

Browse files
authored
Batch 13: update files (#6267)
1 parent cc9f709 commit 4536d5b

File tree

54 files changed

+162
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+162
-50
lines changed

docs/mfc/using-your-old-toolbars.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ title: "Using Your Old Toolbars"
44
ms.date: "11/04/2016"
55
f1_keywords: ["COldToolBar"]
66
helpviewer_keywords: ["toolbars [MFC], backward compatibility", "COldToolBar class [MFC]"]
7-
ms.assetid: 3543257c-8547-43f0-a66a-ee641dc1cf89
87
ms.topic: concept-article
98
---
109
# Using Your Old Toolbars
1110

11+
>[!NOTE]
12+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
13+
1214
If you have used previous versions of Visual Studio to create customized toolbars, the new implementation of class [CToolBar](../mfc/reference/ctoolbar-class.md) could cause you problems. So that you don't have to give up your old toolbars to use the new functionality, the old implementation is still supported.
1315

1416
The DOCKTOOL sample does not use the old-style toolbars, only the new-style toolbars.

docs/mfc/view-classes-architecture.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: View Classes (Architecture)"
33
title: "View Classes (Architecture)"
44
ms.date: "09/17/2019"
55
helpviewer_keywords: ["form and record views [MFC]", "view classes [MFC]", "control views [MFC]", "view classes [MFC], architecture"]
6-
ms.assetid: 8894579a-1436-441e-b985-83711061e495
76
---
87
# View Classes (Architecture)
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
`CView` and its derived classes are child windows that represent the client area of a frame window. Views show data and accept input for a document.
1113

1214
A view class is associated with a document class and a frame window class using a document-template object.

docs/mfc/view-classes-windows.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ title: "View Classes (Windows)"
44
ms.date: "09/17/2019"
55
f1_keywords: ["vc.classes.view"]
66
helpviewer_keywords: ["form and record views [MFC]", "splitter window classes [MFC]", "view classes [MFC], Windows"]
7-
ms.assetid: b11683fb-9f43-4de3-9499-2b55775f9870
87
---
98
# View Classes (Windows)
109

10+
>[!NOTE]
11+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
12+
1113
`CView` and its derived classes are child windows that represent the client area of a frame window. Views show data and accept input for a document.
1214

1315
A view class is associated with a document class and a frame window class using a document-template object.

docs/mfc/virtual-list-controls.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: Virtual List Controls"
33
title: "Virtual List Controls"
44
ms.date: "11/04/2016"
55
helpviewer_keywords: ["cache, virtual list control item data", "list controls [MFC], virtual", "list controls [MFC], List view", "virtual list controls"]
6-
ms.assetid: 319f841f-e426-423a-8276-d93f965b0b45
76
---
87
# Virtual List Controls
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
A virtual list control is a list view control that has the LVS_OWNERDATA style. This style enables the control to support an item count up to a **DWORD** (the default item count only extends to an **`int`**). However, the biggest advantage provided by this style is the ability to only have a subset of data items in memory at any one time. This allows the virtual list view control to lend itself for use with large databases of information, where specific methods of accessing data are already in place.
1113

1214
> [!NOTE]

docs/mfc/visualization-manager.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: Visualization Manager"
33
title: "Visualization Manager"
44
ms.date: "11/19/2018"
55
helpviewer_keywords: ["Visualization Manager"]
6-
ms.assetid: c9dd1365-27ac-42e5-8caa-1004525b4129
76
---
87
# Visualization Manager
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
The visual manager is an object that controls the appearance of a whole application. It acts as a single class where you can put all the drawing code for your application. The MFC Library includes several visual managers. You can also create your own visual manager if you want to create a custom view for your application. The following images show the same application when different visual managers are enabled:
1113

1214
![MyApp as rendered by CMFCVisualManagerWindows.](../mfc/media/vmwindows.png "MyApp as rendered by CMFCVisualManagerWindows") <br/>

docs/mfc/walkthrough-adding-a-ctaskdialog-to-an-application.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ helpviewer_keywords: ["CTaskDialog, adding", "walkthroughs [MFC], dialogs"]
66
---
77
# Walkthrough: Adding a CTaskDialog to an application
88

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
912
This walkthrough introduces the [`CTaskDialog` class](../mfc/reference/ctaskdialog-class.md) and shows how to add it to your application.
1013

1114
The `CTaskDialog` is a task dialog box that replaces the Windows message box in Windows Vista or later. The `CTaskDialog` improves on the original message box and adds functionality. The Windows message box is still supported in Visual Studio.

docs/mfc/walkthrough-adding-a-d2d-object-to-an-mfc-project.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: Walkthrough: Adding a D2D Object to an MFC Proje
33
title: "Walkthrough: Adding a D2D Object to an MFC Project"
44
ms.date: "04/25/2019"
55
helpviewer_keywords: ["MFC, D2D", "D2D [MFC]"]
6-
ms.assetid: dda36c33-c231-4da6-a62f-72d69a12b6dd
76
---
87
# Walkthrough: Adding a D2D Object to an MFC Project
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
This walkthrough teaches how to add a basic Direct2D (D2D) object to a Visual Studio, Microsoft Foundation Class Library (MFC) project, and then build the project into an application that prints "Hello, World!" on a gradient background.
1113

1214
The walkthrough shows how to accomplish these tasks:

docs/mfc/walkthrough-adding-animation-to-an-mfc-project.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: Walkthrough: Adding Animation to an MFC Project"
33
title: "Walkthrough: Adding Animation to an MFC Project"
44
ms.date: "04/25/2019"
55
helpviewer_keywords: ["animation [MFC]", "MFC, animation"]
6-
ms.assetid: 004f832c-9fd5-4f88-9ca9-ae65dececdc2
76
---
87
# Walkthrough: Adding Animation to an MFC Project
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
This walkthrough teaches how to add a basic animated object to a Visual Studio, Microsoft Foundation Class Library (MFC) project.
1113

1214
The walkthrough shows how to accomplish these tasks:

docs/mfc/walkthrough-creating-a-ribbon-application-by-using-mfc.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ description: "Learn more about: Walkthrough: Creating a Ribbon Application By Us
33
title: "Walkthrough: Creating a Ribbon Application By Using MFC"
44
ms.date: "09/09/2019"
55
helpviewer_keywords: ["ribbon application, creating (MFC)", "creating a ribbon application (MFC)"]
6-
ms.assetid: e61393e2-1d6b-4594-a7ce-157d3d1b0d9f
76
---
87
# Walkthrough: Creating a Ribbon Application By Using MFC
98

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
1012
This walkthrough shows how to use the **MFC Application Wizard** to create an application that has a ribbon by default. You can then expand the ribbon by adding a **Custom** ribbon category that has a **Favorites** ribbon panel, and then adding some frequently used commands to the panel.
1113

1214
## Prerequisites

docs/mfc/walkthrough-putting-controls-on-toolbars.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ helpviewer_keywords: ["Customize dialog box, adding controls", "toolbars [MFC],
66
---
77
# Walkthrough: Putting Controls On Toolbars
88

9+
>[!NOTE]
10+
> The Microsoft Foundation Classes (MFC) library continues to be supported. However, we're no longer adding features or updating the documentation.
11+
912
This article describes how to add a toolbar button that contains a Windows control to a toolbar. In MFC, a toolbar button must be a [`CMFCToolBarButton` Class](reference/cmfctoolbarbutton-class.md)-derived class, for example [`CMFCToolBarComboBoxButton` Class](reference/cmfctoolbarcomboboxbutton-class.md), [`CMFCToolBarEditBoxButton` Class](reference/cmfctoolbareditboxbutton-class.md), [`CMFCDropDownToolbarButton` Class](reference/cmfcdropdowntoolbarbutton-class.md), or [`CMFCToolBarMenuButton` Class](reference/cmfctoolbarmenubutton-class.md).
1013

1114
## Adding Controls to Toolbars

0 commit comments

Comments
 (0)