From d0834cb1130b2f6e8c18b0c74fa7c583d68590d6 Mon Sep 17 00:00:00 2001 From: Megha Anand <88059806+anandmeg@users.noreply.github.com> Date: Tue, 16 Jul 2024 11:34:14 -0700 Subject: [PATCH 1/3] Add resource view info --- docs/ide/viewing-the-structure-of-code.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/ide/viewing-the-structure-of-code.md b/docs/ide/viewing-the-structure-of-code.md index 9b79580c05e..475fa75de6b 100644 --- a/docs/ide/viewing-the-structure-of-code.md +++ b/docs/ide/viewing-the-structure-of-code.md @@ -1,7 +1,7 @@ --- title: Use tools windows to view code structure description: Learn how to use the Class View, Call Hierarchy, Object Browser, and Code Definition tool windows to examine classes and their members in Visual Studio. -ms.date: 09/19/2019 +ms.date: 7/16/2024 ms.topic: reference f1_keywords: - vs.documentoutline.window @@ -237,4 +237,8 @@ The shortcut (or right-click) menu in the **Code Definition** window may contain ## Document Outline window -You can use the **Document Outline** window in conjunction with designer views, such as the designer for a XAML page or a Windows Form designer, or with HTML pages. This window displays the elements in a tree view, so that you can view the logical structure of the form or page and find controls that are deeply embedded or hidden. \ No newline at end of file +You can use the **Document Outline** window in conjunction with designer views, such as the designer for a XAML page or a Windows Form designer, or with HTML pages. This window displays the elements in a tree view, so that you can view the logical structure of the form or page and find controls that are deeply embedded or hidden. + +## Resource View (C++) + +Use the Resource View window to display resource files included in your projects. To open the Resource View window, go to menu **View > Other Windows > Resource View** or press **Ctrl+Shift+E**. For more information, see [working with resource files](/cpp/windows/working-with-resource-files) \ No newline at end of file From 7b1e6a903a28712f258d40ff0e31f1de26c77b57 Mon Sep 17 00:00:00 2001 From: Megha Anand <88059806+anandmeg@users.noreply.github.com> Date: Tue, 16 Jul 2024 13:14:10 -0700 Subject: [PATCH 2/3] Updates for user feedback on resource view --- docs/ide/managing-application-resources-dotnet.md | 9 ++++++--- docs/ide/viewing-the-structure-of-code.md | 7 ++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/ide/managing-application-resources-dotnet.md b/docs/ide/managing-application-resources-dotnet.md index 50562268afe..b781b1650dc 100644 --- a/docs/ide/managing-application-resources-dotnet.md +++ b/docs/ide/managing-application-resources-dotnet.md @@ -1,8 +1,8 @@ --- -title: Manage application resources (.NET) +title: Manage application resources description: Manage application resources files that aren't part of the compilation process in Visual Studio, such as icon files or audio files. ms.custom: engagement-fy23 -ms.date: 01/31/2023 +ms.date: 7/16/2024 ms.topic: conceptual f1_keywords: - msvse_resedit.dlg.SetCustomTool @@ -17,7 +17,7 @@ ms.author: meghaanand manager: mijacobs ms.subservice: general-ide --- -# Manage application resources (.NET) +# Manage application resources Resource files are files that are part of an application but are not compiled, for example icon files or audio files. Since these files are not part of the compilation process, you can change them without having to recompile your binaries. If you are planning to localize your application, you should use resource files for all the strings and other resources that need to be changed when you localize your application. @@ -41,7 +41,9 @@ Select the **Resources** tab. You can add a *.resx* file if your project does no Resources are managed differently in .NET projects than in other project types. For more information about resources in: - Universal Windows Platform (UWP) apps, see [App resources and the Resource Management System](/windows/uwp/app-resources/) +- C++/CLI (managed) projects, see [Resources in Desktop Apps](/dotnet/framework/resources/index) - C++ projects, see [Work with resource files](/cpp/windows/working-with-resource-files) and [How to: Create a resource](/cpp/windows/how-to-create-a-resource) + - Use the **Resource View** window (**View** > **Other Windows** > **Resource View**) to display resource files included in your projects. ## Support options @@ -50,4 +52,5 @@ If you run into a problem with managing application resources, see [Troubleshoot ## Related content - [Resources in .NET apps (.NET Framework)](/dotnet/framework/resources/index) +- [Resource Editor](/cpp/windows/resource-editors) - [Managing app resources (Visual Studio for Mac)](/visualstudio/mac/managing-app-resources) diff --git a/docs/ide/viewing-the-structure-of-code.md b/docs/ide/viewing-the-structure-of-code.md index 475fa75de6b..d644da7b232 100644 --- a/docs/ide/viewing-the-structure-of-code.md +++ b/docs/ide/viewing-the-structure-of-code.md @@ -1,7 +1,7 @@ --- title: Use tools windows to view code structure description: Learn how to use the Class View, Call Hierarchy, Object Browser, and Code Definition tool windows to examine classes and their members in Visual Studio. -ms.date: 7/16/2024 +ms.date: 09/19/2019 ms.topic: reference f1_keywords: - vs.documentoutline.window @@ -239,6 +239,7 @@ The shortcut (or right-click) menu in the **Code Definition** window may contain You can use the **Document Outline** window in conjunction with designer views, such as the designer for a XAML page or a Windows Form designer, or with HTML pages. This window displays the elements in a tree view, so that you can view the logical structure of the form or page and find controls that are deeply embedded or hidden. -## Resource View (C++) +## Related links -Use the Resource View window to display resource files included in your projects. To open the Resource View window, go to menu **View > Other Windows > Resource View** or press **Ctrl+Shift+E**. For more information, see [working with resource files](/cpp/windows/working-with-resource-files) \ No newline at end of file +- [Working with resource files (C++)](/cpp/windows/working-with-resource-files) +- [Resources in .NET apps (.NET Framework)](/dotnet/framework/resources/index) \ No newline at end of file From 31ded150404ee7dda1f02ab04fbdd8ca886a2063 Mon Sep 17 00:00:00 2001 From: Megha Anand <88059806+anandmeg@users.noreply.github.com> Date: Tue, 16 Jul 2024 13:23:12 -0700 Subject: [PATCH 3/3] Add related links --- docs/ide/managing-application-resources-dotnet.md | 4 +++- docs/ide/viewing-the-structure-of-code.md | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/ide/managing-application-resources-dotnet.md b/docs/ide/managing-application-resources-dotnet.md index b781b1650dc..96ff29b966a 100644 --- a/docs/ide/managing-application-resources-dotnet.md +++ b/docs/ide/managing-application-resources-dotnet.md @@ -9,6 +9,7 @@ f1_keywords: helpviewer_keywords: - Resource Designer - Resource Editor +- Resource View - resources [Visual Studio] - Resources page in Project Designer - application resources [Visual Studio] @@ -53,4 +54,5 @@ If you run into a problem with managing application resources, see [Troubleshoot - [Resources in .NET apps (.NET Framework)](/dotnet/framework/resources/index) - [Resource Editor](/cpp/windows/resource-editors) -- [Managing app resources (Visual Studio for Mac)](/visualstudio/mac/managing-app-resources) +- [Work with resource files (C++)](/cpp/windows/working-with-resource-files) +- [Resources in Universal Windows Platform apps](/windows/uwp/app-resources/) diff --git a/docs/ide/viewing-the-structure-of-code.md b/docs/ide/viewing-the-structure-of-code.md index d644da7b232..5a3a9973d9e 100644 --- a/docs/ide/viewing-the-structure-of-code.md +++ b/docs/ide/viewing-the-structure-of-code.md @@ -242,4 +242,5 @@ You can use the **Document Outline** window in conjunction with designer views, ## Related links - [Working with resource files (C++)](/cpp/windows/working-with-resource-files) -- [Resources in .NET apps (.NET Framework)](/dotnet/framework/resources/index) \ No newline at end of file +- [Resources in .NET apps (.NET Framework)](/dotnet/framework/resources/index) +- [Manage application resources](managing-application-resources-dotnet.md) \ No newline at end of file