Merge pull request #1135 from dotnet/adegeo-links

Correct .NET Framework links that pointed to old .NET 5 URLs
This commit is contained in:
Andy (Steve) De George
2021-08-11 12:04:34 -07:00
committed by GitHub
parent 2aea7ebcbf
commit e9fcf43083
162 changed files with 323 additions and 323 deletions
@@ -19,7 +19,7 @@ Windows Presentation Foundation (WPF) is a UI framework that creates desktop cli
|I want to jump right in…|[Walkthrough: My first WPF desktop application](walkthrough-my-first-wpf-desktop-application.md)|
|How do I design the application UI?|[Designing XAML in Visual Studio](/visualstudio/designers/designing-xaml-in-visual-studio)|
|New to .NET?|[Overview of the .NET Framework](/dotnet/framework/get-started/overview)<br /><br /> [Getting Started with Visual C# and Visual Basic](/visualstudio/ide/quickstart-visual-basic-console)|
|Tell me more about WPF…|[Introduction to WPF in Visual Studio](introduction-to-wpf-in-vs.md)<br /><br /> [XAML Overview (WPF)](/dotnet/desktop-wpf/fundamentals/xaml)<br /><br /> [Controls](../controls/index.md)<br /><br /> [Data Binding Overview](/dotnet/desktop-wpf/data/data-binding-overview)|
|Tell me more about WPF…|[Introduction to WPF in Visual Studio](introduction-to-wpf-in-vs.md)<br /><br /> [XAML in WPF](../advanced/xaml-in-wpf.md)<br /><br /> [Controls](../controls/index.md)<br /><br /> [Data Binding Overview](../data/data-binding-overview.md)|
|Are you a Windows Forms developer?|[Windows Forms Controls and Equivalent WPF Controls](../advanced/windows-forms-controls-and-equivalent-wpf-controls.md)<br /><br /> [WPF and Windows Forms Interoperation](../advanced/wpf-and-windows-forms-interoperation.md)|
## See also
@@ -353,7 +353,7 @@ The following illustration shows the UI elements added to *ExpenseReportPage.xam
## Style controls
The appearance of various elements is often the same for all elements of the same type in a UI. UI uses [styles](/dotnet/desktop-wpf/fundamentals/styles-templates-overview) to make appearances reusable across multiple elements. The reusability of styles helps to simplify XAML creation and management. This section replaces the per-element attributes that were defined in previous steps with styles.
The appearance of various elements is often the same for all elements of the same type in a UI. UI uses [styles](../controls/styles-templates-overview.md) to make appearances reusable across multiple elements. The reusability of styles helps to simplify XAML creation and management. This section replaces the per-element attributes that were defined in previous steps with styles.
1. Open *Application.xaml* or *App.xaml*.
@@ -443,7 +443,7 @@ In this section, you'll update the UI for each item in the data-bound lists by u
1. Open *ExpenseReportPage.xaml*.
2. Bind the content of the "Name" and "Department" <xref:System.Windows.Controls.Label> elements to the appropriate data source property. For more information about data binding, see [Data binding overview](/dotnet/desktop-wpf/data/data-binding-overview).
2. Bind the content of the "Name" and "Department" <xref:System.Windows.Controls.Label> elements to the appropriate data source property. For more information about data binding, see [Data binding overview](../data/data-binding-overview.md).
[!code-xaml[ExpenseIt#31](~/samples/snippets/csharp/VS_Snippets_Wpf/ExpenseIt/CSharp/ExpenseIt9/ExpenseReportPage.xaml#31)]
@@ -476,7 +476,7 @@ The following illustration shows both pages of the `ExpenseIt` application with
In this walkthrough you learned a number of techniques for creating a UI using Windows Presentation Foundation (WPF). You should now have a basic understanding of the building blocks of a data-bound .NET app. For more information about the WPF architecture and programming models, see the following topics:
- [WPF architecture](../advanced/wpf-architecture.md)
- [XAML overview (WPF)](/dotnet/desktop-wpf/fundamentals/xaml)
- [XAML in WPF](../advanced/xaml-in-wpf.md)
- [Dependency properties overview](../advanced/dependency-properties-overview.md)
- [Layout](../advanced/layout.md)
@@ -484,7 +484,7 @@ For more information about creating applications, see the following topics:
- [Application development](../app-development/index.md)
- [Controls](../controls/index.md)
- [Data binding overview](/dotnet/desktop-wpf/data/data-binding-overview)
- [Data binding overview](../data/data-binding-overview.md)
- [Graphics and multimedia](../graphics-multimedia/index.md)
- [Documents in WPF](../advanced/documents-in-wpf.md)