Skip to content

Commit 1f023ed

Browse files
authored
update desktop URLs with redirect targets (#12547)
1 parent 1478660 commit 1f023ed

519 files changed

Lines changed: 1753 additions & 1753 deletions

File tree

Some content is hidden

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

xml/System.AddIn.Pipeline/FrameworkElementAdapters.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Windows Presentation Foundation (WPF) extends the .NET Framework add-in model to
3333
3434
Once the <xref:System.AddIn.Contract.INativeHandleContract> is passed across the isolation boundary, it must be converted to a type that can be displayed by the host application or the add-in. In this case, the static <xref:System.AddIn.Pipeline.FrameworkElementAdapters.ContractToViewAdapter*> method is called to convert an <xref:System.AddIn.Contract.INativeHandleContract> to a <xref:System.Windows.FrameworkElement>.
3535
36-
For more detailed exposition of WPF add-ins, see [WPF Add-Ins Overview](/dotnet/framework/wpf/app-development/wpf-add-ins-overview).
36+
For more detailed exposition of WPF add-ins, see [WPF Add-Ins Overview](/dotnet/desktop/wpf/app-development/wpf-add-ins-overview).
3737
3838
]]></format>
3939
</remarks>

xml/System.Collections.Specialized/INotifyCollectionChanged.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
## Remarks
7575
You can enumerate over any collection that implements the <xref:System.Collections.IEnumerable> interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the <xref:System.Collections.Specialized.INotifyCollectionChanged> interface. This interface exposes the <xref:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged> event that must be raised whenever the underlying collection changes.
7676
77-
WPF provides the <xref:System.Collections.ObjectModel.ObservableCollection`1> class, which is a built-in implementation of a data collection that exposes the <xref:System.Collections.Specialized.INotifyCollectionChanged> interface. For an example, see [How to: Create and Bind to an ObservableCollection](/dotnet/framework/wpf/data/how-to-create-and-bind-to-an-observablecollection).
77+
WPF provides the <xref:System.Collections.ObjectModel.ObservableCollection`1> class, which is a built-in implementation of a data collection that exposes the <xref:System.Collections.Specialized.INotifyCollectionChanged> interface. For an example, see [How to: Create and Bind to an ObservableCollection](/dotnet/desktop/wpf/data/how-to-create-and-bind-to-an-observablecollection).
7878
79-
The individual data objects within the collection must satisfy the requirements described in the [Binding Sources Overview](/dotnet/framework/wpf/data/binding-sources-overview).
79+
The individual data objects within the collection must satisfy the requirements described in the [Binding Sources Overview](/dotnet/desktop/wpf/data/binding-sources-overview).
8080
8181
Before implementing your own collection, consider using <xref:System.Collections.ObjectModel.ObservableCollection`1> or one of the existing collection classes, such as <xref:System.Collections.Generic.List`1>, <xref:System.Collections.ObjectModel.Collection`1>, and <xref:System.ComponentModel.BindingList`1>, among many others.
8282

xml/System.ComponentModel.Design/DesignSurface.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@
943943
<value>
944944
<see langword="true" /> if the **Design-time Error List** is loading; otherwise, <see langword="false" />.</value>
945945
<remarks>To be added.</remarks>
946-
<related type="Article" href="/dotnet/framework/winforms/controls/design-time-errors-in-the-windows-forms-designer">Design-Time Errors in the Windows Forms Designer</related>
946+
<related type="Article" href="/dotnet/desktop/winforms/controls-design/designer-errors">Design-Time Errors in the Windows Forms Designer</related>
947947
</Docs>
948948
</Member>
949949
<Member MemberName="Flush">

xml/System.ComponentModel.Design/HelpKeywordAttribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class DemoComponent : Component
105105
}
106106
```
107107
108-
The following code example demonstrates using the <xref:System.ComponentModel.Design.HelpKeywordAttribute> class to specify a context keyword. For a complete explanation of this code example, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/framework/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
108+
The following code example demonstrates using the <xref:System.ComponentModel.Design.HelpKeywordAttribute> class to specify a context keyword. For a complete explanation of this code example, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/desktop/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
109109
110110
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.cs" id="Snippet20":::
111111
:::code language="vb" source="~/snippets/visualbasic/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.vb" id="Snippet20":::

xml/System.ComponentModel.Design/ObjectSelectorEditor.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
<param name="treeView">The tree view control to modify.</param>
184184
<summary>Modify a Windows Forms <see cref="T:System.Windows.Forms.TreeView" /> control to use the new Explorer style theme.</summary>
185185
<remarks>To be added.</remarks>
186-
<related type="Article" href="/dotnet/framework/winforms/controls/creating-an-explorer-style-interface-with-the-listview-and-treeview">Walkthrough: Create an Explorer Style Interface with the ListView and TreeView Controls</related>
186+
<related type="Article" href="/dotnet/desktop/winforms/controls/creating-an-explorer-style-interface-with-the-listview-and-treeview">Walkthrough: Create an Explorer Style Interface with the ListView and TreeView Controls</related>
187187
</Docs>
188188
</Member>
189189
<Member MemberName="currValue">

xml/System.ComponentModel/AddingNewEventArgs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
6666
6767
## Examples
68-
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventArgs> class to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/framework/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
68+
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventArgs> class to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/desktop/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
6969
7070
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.DataConnector.AddingNew/CPP/form1.cpp" id="Snippet8":::
7171
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AddingNewEventArgs/Overview/form1.cs" id="Snippet8":::
@@ -255,7 +255,7 @@
255255
256256
257257
## Examples
258-
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventArgs> class to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/framework/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
258+
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventArgs> class to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/desktop/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
259259
260260
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.DataConnector.AddingNew/CPP/form1.cpp" id="Snippet8":::
261261
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AddingNewEventArgs/Overview/form1.cs" id="Snippet8":::

xml/System.ComponentModel/AddingNewEventHandler.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
7474
7575
## Examples
76-
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventHandler> delegate to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/framework/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
76+
The following code example demonstrates how to use the <xref:System.ComponentModel.AddingNewEventHandler> delegate to handle the <xref:System.Windows.Forms.BindingSource.AddingNew?displayProperty=nameWithType> event. This code example is part of a larger example provided in [How to: Customize Item Addition with the Windows Forms BindingSource](/dotnet/desktop/winforms/controls/how-to-customize-item-addition-with-the-windows-forms-bindingsource).
7777
7878
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.DataConnector.AddingNew/CPP/form1.cpp" id="Snippet8":::
7979
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AddingNewEventArgs/Overview/form1.cs" id="Snippet8":::

xml/System.ComponentModel/AmbientValueAttribute.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
6767
6868
## Examples
69-
The following code example demonstrates using <xref:System.ComponentModel.AmbientValueAttribute> to enforce ambient behavior for a property called `AlertForeColor`. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/framework/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
69+
The following code example demonstrates using <xref:System.ComponentModel.AmbientValueAttribute> to enforce ambient behavior for a property called `AlertForeColor`. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/desktop/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
7070
7171
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.cs" id="Snippet23":::
7272
:::code language="vb" source="~/snippets/visualbasic/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.vb" id="Snippet23":::
@@ -581,7 +581,7 @@
581581
<format type="text/markdown"><![CDATA[
582582
583583
## Examples
584-
The following code example demonstrates using <xref:System.ComponentModel.AmbientValueAttribute> to enforce ambient behavior for a property called `AlertForeColor`. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/framework/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
584+
The following code example demonstrates using <xref:System.ComponentModel.AmbientValueAttribute> to enforce ambient behavior for a property called `AlertForeColor`. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/desktop/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
585585
586586
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.cs" id="Snippet23":::
587587
:::code language="vb" source="~/snippets/visualbasic/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.vb" id="Snippet23":::

xml/System.ComponentModel/AttributeProviderAttribute.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
7676
7777
## Examples
78-
The following code example demonstrates using <xref:System.ComponentModel.AttributeProviderAttribute> to mark a `DataSource` property with a specific type of <xref:System.ComponentModel.IListSource>. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/framework/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
78+
The following code example demonstrates using <xref:System.ComponentModel.AttributeProviderAttribute> to mark a `DataSource` property with a specific type of <xref:System.ComponentModel.IListSource>. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/desktop/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
7979
8080
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.cs" id="Snippet25":::
8181
:::code language="vb" source="~/snippets/visualbasic/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.vb" id="Snippet25":::
@@ -197,7 +197,7 @@
197197
<format type="text/markdown"><![CDATA[
198198
199199
## Examples
200-
The following code example demonstrates using <xref:System.ComponentModel.AttributeProviderAttribute> to mark a `DataSource` property with a specific type of <xref:System.ComponentModel.IListSource>. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/framework/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
200+
The following code example demonstrates using <xref:System.ComponentModel.AttributeProviderAttribute> to mark a `DataSource` property with a specific type of <xref:System.ComponentModel.IListSource>. For a full code listing, see [How to: Apply Attributes in Windows Forms Controls](/dotnet/desktop/winforms/controls/how-to-apply-attributes-in-windows-forms-controls).
201201
202202
:::code language="csharp" source="~/snippets/csharp/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.cs" id="Snippet25":::
203203
:::code language="vb" source="~/snippets/visualbasic/System.ComponentModel/AmbientValueAttribute/Overview/attributesdemocontrol.vb" id="Snippet25":::

0 commit comments

Comments
 (0)