Skip to content

Commit 737d0d4

Browse files
DennisLee-DennisLeemairaw
authored andcommitted
1436790/1438462: Part 43: 20 files with MSDN link fixes. (dotnet#10642)
* Another 20 files with MSDN link fixes. * Revert "Another 20 files with MSDN link fixes." This reverts commit a8690ed. * Another 20 files of MSDN link fixes. * Apply suggestions from code review Accepting all 3 of Maira's suggestions. Co-Authored-By: DennisLee-DennisLee <v-dele@microsoft.com>
1 parent e4b97d7 commit 737d0d4

20 files changed

+18
-22
lines changed

docs/framework/wpf/controls/how-to-crop-an-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.assetid: c6bba109-c6e7-4cf8-bfe6-9cf8d01bb4fc
1212
# How to: Crop an Image
1313
This example shows how to crop an image using <xref:System.Windows.Media.Imaging.CroppedBitmap>.
1414

15-
<xref:System.Windows.Media.Imaging.CroppedBitmap> is primarily used when encoding a cropped version of an image to save out to a file. To crop an image for display purposes see the [Create a Clip Region](https://msdn.microsoft.com/library/56e4bed6-78d7-4292-b917-d72d0b3e4376) topic.
15+
<xref:System.Windows.Media.Imaging.CroppedBitmap> is primarily used when encoding a cropped version of an image to save out to a file. To crop an image for display purposes see the [How to: Create a Clip Region](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms746710(v=vs.90)) topic.
1616

1717
## Example
1818
The following [!INCLUDE[TLA#tla_xaml](../../../../includes/tlasharptla-xaml-md.md)] defines resources used within the samples below.
@@ -34,4 +34,4 @@ This example shows how to crop an image using <xref:System.Windows.Media.Imaging
3434
[!code-vb[imageelementexample#CroppedCSharp2](../../../../samples/snippets/visualbasic/VS_Snippets_Wpf/ImageElementExample/VB/CroppedImageExample.xaml.vb#croppedcsharp2)]
3535

3636
## See also
37-
- [Create a Clip Region](https://msdn.microsoft.com/library/56e4bed6-78d7-4292-b917-d72d0b3e4376)
37+
- [How to: Create a Clip Region](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms746710(v=vs.90))

docs/framework/wpf/controls/how-to-customize-the-ticks-on-a-slider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ This example shows how to create a <xref:System.Windows.Controls.Slider> control
2222
- <xref:System.Windows.Controls.Slider>
2323
- <xref:System.Windows.Controls.Primitives.TickBar>
2424
- <xref:System.Windows.Controls.Slider.TickPlacement%2A>
25-
- [Slider How-to Topics](https://msdn.microsoft.com/library/534be86c-afb2-425d-8186-631278a9925e)
25+
- [How to: Bind a Slider to a Property Value](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms788716(v=vs.90))

docs/framework/wpf/controls/how-to-define-a-groupbox-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ This example shows how to create a template for a <xref:System.Windows.Controls.
1616

1717
## See also
1818
- <xref:System.Windows.Controls.GroupBox>
19-
- [GroupBox How-to Topics](https://msdn.microsoft.com/library/7692e155-a4c6-428c-b7e0-64b3740daca7)
19+
- [How to: Create a GroupBox](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms748321(v=vs.90))

docs/framework/wpf/controls/how-to-position-a-tooltip.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,3 @@ ToolTip placement by using the Placement, PlacementRectangle, and Offset propert
5757
- <xref:System.Windows.Controls.ToolTipService>
5858
- [How-to Topics](../../../../docs/framework/wpf/controls/tooltip-how-to-topics.md)
5959
- [ToolTip Overview](../../../../docs/framework/wpf/controls/tooltip-overview.md)
60-
- [Use the ContextMenuService and ToolTipService](https://msdn.microsoft.com/library/809b0e9c-d612-4cda-b8af-1a698c68f4d1)

docs/framework/wpf/controls/label.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ ms.assetid: 241c1ce2-60f8-4613-a0ec-9b9bb25fb6af
1313

1414
A <xref:System.Windows.Controls.Label> provides both functional and visual support for access keys. It is frequently used to enable quick keyboard access to controls such as a <xref:System.Windows.Controls.TextBox>. To assign a <xref:System.Windows.Controls.Label> to a <xref:System.Windows.Controls.Control>, set the <xref:System.Windows.Controls.Label.Target%2A?displayProperty=nameWithType> property to the control that should get focus when the user presses the access key.
1515

16-
The following image shows a <xref:System.Windows.Controls.Label> "Themes" that targets a <xref:System.Windows.Controls.ComboBox>. When the user presses , the <xref:System.Windows.Controls.ComboBox> receives focus. For more information, see [How to: Set the Target Property of a Label](https://msdn.microsoft.com/library/b24c6977-ebcb-4855-a9bb-3fd4435af8f8).
16+
The following image shows a <xref:System.Windows.Controls.Label> "Themes" that targets a <xref:System.Windows.Controls.ComboBox>. When the user presses , the <xref:System.Windows.Controls.ComboBox> receives focus. For more information, see [How to: Set the Target Property of a Label](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms752101(v=vs.90)).
1717

1818
![Display properties shows labeled by usage](../../../../docs/framework/wpf/controls/media/labeledby.JPG "LabeledBy")
1919

2020
## In This Section
21-
[How to: Set the Target Property of a Label](https://msdn.microsoft.com/library/b24c6977-ebcb-4855-a9bb-3fd4435af8f8)
21+
[How to: Create a Control That Has an Access Key and Text Wrapping](how-to-create-a-control-that-has-an-access-key-and-text-wrapping.md)
2222

2323
## Reference
2424
<xref:System.Windows.Controls.Label>

docs/framework/wpf/controls/listbox-how-to-topics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The topics in this section describe how to use the <xref:System.Windows.Controls
1414
## In This Section
1515
[Bind a ListBox to Data](../../../../docs/framework/wpf/controls/how-to-bind-a-listbox-to-data.md)
1616
[Get a ListBoxItem](../../../../docs/framework/wpf/controls/how-to-get-a-listboxitem.md)
17-
[How to: Add Data to an ItemsControl](https://msdn.microsoft.com/library/271e52ce-0f44-4b1f-a7da-0bc72bd9ed65)
17+
[How to: Add Data to an ItemsControl](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms743602(v=vs.90))
1818
[Improve the Scrolling Performance of a ListBox](../../../../docs/framework/wpf/controls/how-to-improve-the-scrolling-performance-of-a-listbox.md)
1919

2020
## Reference

docs/framework/wpf/controls/panel-how-to-topics.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ ms.assetid: 28d8faf2-490c-4e17-a447-df25a66f6679
1212
The topics in this section describe how to use the <xref:System.Windows.Controls.Panel> element and related [!INCLUDE[TLA#tla_api#plural](../../../../includes/tlasharptla-apisharpplural-md.md)].
1313

1414
## In This Section
15-
[How to: Apply a LayoutTransform to an Element](https://msdn.microsoft.com/library/8221db67-d99f-4783-b65e-a6c5a52c03ab)
1615
[Create a Custom Panel Element](../../../../docs/framework/wpf/controls/how-to-create-a-custom-panel-element.md)
1716
[Override the Panel OnRender Method](../../../../docs/framework/wpf/controls/how-to-override-the-panel-onrender-method.md)
1817
[Set the Height Properties of an Element](../../../../docs/framework/wpf/controls/how-to-set-the-height-properties-of-an-element.md)

docs/framework/wpf/controls/richtextbox-how-to-topics.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ This section provides examples that demonstrate how to accomplish common tasks u
1616
[Change Selection in a RichTextBox Programmatically](../../../../docs/framework/wpf/controls/change-selection-in-a-richtextbox-programmatically.md)
1717
[Save, Load, and Print RichTextBox Content](../../../../docs/framework/wpf/controls/how-to-save-load-and-print-richtextbox-content.md)
1818
[Position a Custom Context Menu in a RichTextBox](../../../../docs/framework/wpf/controls/how-to-position-a-custom-context-menu-in-a-richtextbox.md)
19-
[How to: Replace the Default Content Host for a RichTextBox](https://msdn.microsoft.com/library/dec1b2ce-9ca5-4bb2-bf54-f8a80a3c8beb)
2019

2120
## See also
2221
- <xref:System.Windows.Controls.TextBox>

docs/framework/wpf/controls/scrollviewer-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Content within a user interface is often larger than a computer screen's display
5858
- <xref:System.Windows.Controls.ScrollViewer>
5959
- <xref:System.Windows.Controls.Primitives.ScrollBar>
6060
- <xref:System.Windows.Controls.Primitives.IScrollInfo>
61-
- [Create a Scroll Viewer](https://msdn.microsoft.com/library/c8e46af7-b417-441b-aa30-791cbdbd43ef)
61+
- [How to: Create a Scroll Viewer](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms752352(v=vs.90))
6262
- [Documents in WPF](../../../../docs/framework/wpf/advanced/documents-in-wpf.md)
6363
- [ScrollBar Styles and Templates](../../../../docs/framework/wpf/controls/scrollbar-styles-and-templates.md)
6464
- [Controls](../../../../docs/framework/wpf/advanced/optimizing-performance-controls.md)

docs/framework/wpf/controls/tooltip-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ A tooltip is a small pop-up window that appears when a user pauses the mouse poi
6161
## Using the Time Interval Properties of ToolTipService
6262
The <xref:System.Windows.Controls.ToolTipService> class provides the following properties for you to set tooltip display times: <xref:System.Windows.Controls.ToolTipService.InitialShowDelay%2A>, <xref:System.Windows.Controls.ToolTipService.BetweenShowDelay%2A>, and <xref:System.Windows.Controls.ToolTipService.ShowDuration%2A>.
6363

64-
Use the <xref:System.Windows.Controls.ToolTipService.InitialShowDelay%2A> and <xref:System.Windows.Controls.ToolTipService.ShowDuration%2A> properties to specify a delay, typically brief, before a <xref:System.Windows.Controls.ToolTip> appears and also to specify how long a <xref:System.Windows.Controls.ToolTip> remains visible. For more information, see [How to: Delay the Display of a ToolTip](https://msdn.microsoft.com/library/618e05ef-f2bf-4a53-a0f4-aacb49918bd7).
64+
Use the <xref:System.Windows.Controls.ToolTipService.InitialShowDelay%2A> and <xref:System.Windows.Controls.ToolTipService.ShowDuration%2A> properties to specify a delay, typically brief, before a <xref:System.Windows.Controls.ToolTip> appears and also to specify how long a <xref:System.Windows.Controls.ToolTip> remains visible. For more information, see [How to: Delay the Display of a ToolTip](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms747264(v=vs.90)).
6565

6666
The <xref:System.Windows.Controls.ToolTipService.BetweenShowDelay%2A> property determines if tooltips for different controls appear without an initial delay when you move the mouse pointer quickly between them. For more information about the <xref:System.Windows.Controls.ToolTipService.BetweenShowDelay%2A> property, see [Use the BetweenShowDelay Property](../../../../docs/framework/wpf/controls/how-to-use-the-betweenshowdelay-property.md).
6767

docs/framework/wpf/controls/walkthrough-display-data-from-a-sql-server-database-in-a-datagrid-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You need the following components to complete this walkthrough:
6969

7070
4. Select the <xref:System.Windows.Window>.
7171

72-
5. Using the Properties window or XAML editor, create an event handler for the <xref:System.Windows.Window> named `Window_Loaded` for the <xref:System.Windows.FrameworkElement.Loaded> event. For more information, see [How to: Create a Simple Event Handler](https://msdn.microsoft.com/library/b1456e07-9dec-4354-99cf-18666b64f480).
72+
5. Using the Properties window or XAML editor, create an event handler for the <xref:System.Windows.Window> named `Window_Loaded` for the <xref:System.Windows.FrameworkElement.Loaded> event. For more information, see [How to: Create a Simple Event Handler](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2010/bb675300(v=vs.100)).
7373

7474
The following shows the XAML for MainWindow.xaml.
7575

docs/framework/wpf/data/how-to-bind-to-xdocument-xelement-or-linq-for-xml-query-results.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This example demonstrates how to bind XML data to an <xref:System.Windows.Contro
2323
[!code-csharp[XLinqExample#LoadDCFromFile](../../../../samples/snippets/csharp/VS_Snippets_Wpf/XLinqExample/CSharp/Window1.xaml.cs#loaddcfromfile)]
2424
[!code-vb[XLinqExample#LoadDCFromFile](../../../../samples/snippets/visualbasic/VS_Snippets_Wpf/XLinqExample/visualbasic/window1.xaml.vb#loaddcfromfile)]
2525

26-
XML data can be stored as a XAML resource using <xref:System.Windows.Data.ObjectDataProvider>. For a complete example, see [L2DBForm.xaml Source Code](https://msdn.microsoft.com/library/624e96d4-6d27-4195-8ac2-2f3835f6c57e). The following sample shows how code can set the data context to an object resource.
26+
XML data can be stored as a XAML resource using <xref:System.Windows.Data.ObjectDataProvider>. For a complete example, see [L2DBForm.xaml source code](/visualstudio/designers/l2dbform-xaml-source-code). The following sample shows how code can set the data context to an object resource.
2727

2828
[!code-csharp[XLinqExample#LoadDCFromXAML](../../../../samples/snippets/csharp/VS_Snippets_Wpf/XLinqExample/CSharp/Window1.xaml.cs#loaddcfromxaml)]
2929
[!code-vb[XLinqExample#LoadDCFromXAML](../../../../samples/snippets/visualbasic/VS_Snippets_Wpf/XLinqExample/visualbasic/window1.xaml.vb#loaddcfromxaml)]

docs/framework/wpf/data/how-to-create-a-binding-in-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This example shows how to create and set a <xref:System.Windows.Data.Binding> in
2525
[!code-csharp[CodeOnlyBinding#1](../../../../samples/snippets/csharp/VS_Snippets_Wpf/CodeOnlyBinding/CSharp/binding.cs#1)]
2626
[!code-vb[CodeOnlyBinding#1](../../../../samples/snippets/visualbasic/VS_Snippets_Wpf/CodeOnlyBinding/VisualBasic/App.vb#1)]
2727

28-
For the complete code sample, see [Code-only Binding Sample](https://msdn.microsoft.com/library/764aaf0b-2216-4941-9548-9c98da18d1a6).
28+
For the complete code sample, see [Code-only Binding Sample](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/ms771500(v=vs.90)).
2929

3030
Instead of calling <xref:System.Windows.FrameworkElement.SetBinding%2A>, you can use the <xref:System.Windows.Data.BindingOperations.SetBinding%2A> static method of the <xref:System.Windows.Data.BindingOperations> class. The following example, calls <xref:System.Windows.Data.BindingOperations.SetBinding%2A?displayProperty=nameWithType> instead of <xref:System.Windows.FrameworkElement.SetBinding%2A?displayProperty=nameWithType> to bind `myText` to `myDataProperty`.
3131

docs/framework/wpf/data/how-to-implement-prioritybinding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.assetid: d63b65ab-b3e9-4322-9aa8-1450f8d89532
2121
The get accessor of `SlowestDP` waits for 5 seconds before returning the value of the `_slowestDP` data member.
2222

2323
> [!NOTE]
24-
> This example is for demonstration purposes only. The [!INCLUDE[TLA#tla_net](../../../../includes/tlasharptla-net-md.md)] guidelines recommend against defining properties that are orders of magnitude slower than a field set would be. For more information, see [NIB: Choosing Between Properties and Methods](https://msdn.microsoft.com/library/55825e8f-7e2e-448a-9505-7217cc91b1af).
24+
> This example is for demonstration purposes only. The [!INCLUDE[TLA#tla_net](../../../../includes/tlasharptla-net-md.md)] guidelines recommend against defining properties that are orders of magnitude slower than a field set would be. For more information, see [Choosing Between Properties and Methods](https://docs.microsoft.com/previous-versions/dotnet/netframework-4.0/ms229054(v=vs.100)).
2525
2626
[!code-csharp[PriorityBinding#1](../../../../samples/snippets/csharp/VS_Snippets_Wpf/PriorityBinding/CSharp/Window1.xaml.cs#1)]
2727
[!code-vb[PriorityBinding#1](../../../../samples/snippets/visualbasic/VS_Snippets_Wpf/PriorityBinding/VisualBasic/AsyncDataSource.vb#1)]

docs/framework/wpf/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Windows Presentation Foundation (WPF) is a UI framework that creates desktop cli
1616
|-|-|
1717
|I want to jump right in…|[Walkthrough: My first WPF desktop application](../../../../docs/framework/wpf/getting-started/walkthrough-my-first-wpf-desktop-application.md)|
1818
|How do I design the application UI?|[Designing XAML in Visual Studio](/visualstudio/designers/designing-xaml-in-visual-studio)|
19-
|New to .NET?|[Overview of the .NET Framework](https://msdn.microsoft.com/library/zw4w595w\(v=vs.140\).aspx)<br /><br /> [.NET Framework Application Essentials](../../../../docs/standard/application-essentials.md)<br /><br /> [Getting Started with Visual C# and Visual Basic](/visualstudio/ide/getting-started-with-visual-csharp-and-visual-basic)|
19+
|New to .NET?|[Overview of the .NET Framework](../../get-started/overview.md)<br /><br /> [.NET Framework Application Essentials](../../../../docs/standard/application-essentials.md)<br /><br /> [Getting Started with Visual C# and Visual Basic](/visualstudio/ide/getting-started-with-visual-csharp-and-visual-basic)|
2020
|Tell me more about WPF…|[Introduction to WPF in Visual Studio](../../../../docs/framework/wpf/getting-started/introduction-to-wpf-in-vs.md)<br /><br /> [XAML Overview (WPF)](../../../../docs/framework/wpf/advanced/xaml-overview-wpf.md)<br /><br /> [Controls](../../../../docs/framework/wpf/controls/index.md)<br /><br /> [Data Binding Overview](../../../../docs/framework/wpf/data/data-binding-overview.md)|
2121
|Are you a Windows Forms developer?|[Windows Forms Controls and Equivalent WPF Controls](../../../../docs/framework/wpf/advanced/windows-forms-controls-and-equivalent-wpf-controls.md)<br /><br /> [WPF and Windows Forms Interoperation](../../../../docs/framework/wpf/advanced/wpf-and-windows-forms-interoperation.md)|
2222

docs/framework/wpf/getting-started/introduction-to-wpf-in-vs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ Windows Presentation Foundation (WPF) in Visual Studio provides developers with
2525

2626
[Introduction to WPF](/visualstudio/designers/introduction-to-wpf)
2727

28-
[WPF in the .NET Framework](https://msdn.microsoft.com/library/ms754130\(v=vs.100\).aspx)
28+
[WPF in the .NET Framework](../index.md)
2929

3030
[Get Visual Studio](https://aka.ms/vsdownload?utm_source=mscom&utm_campaign=msdocs)

docs/framework/wpf/getting-started/walkthrough-my-first-wpf-desktop-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ The following illustration shows the results of what you just added:
321321

322322
1. Open *`ExpenseItHome.xaml`*.
323323

324-
2. Add a <xref:System.Windows.Controls.Primitives.ButtonBase.Click> event handler to the <xref:System.Windows.Controls.Button> element. For more information, see [How to: Create a simple event handler](https://msdn.microsoft.com/library/b1456e07-9dec-4354-99cf-18666b64f480).
324+
2. Add a <xref:System.Windows.Controls.Primitives.ButtonBase.Click> event handler to the <xref:System.Windows.Controls.Button> element. For more information, see [How to: Create a simple event handler](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2010/bb675300(v=vs.100)).
325325

326326
[!code-xaml[ExpenseIt#15](../../../../samples/snippets/csharp/VS_Snippets_Wpf/ExpenseIt/CSharp/ExpenseIt6/ExpenseItHome.xaml#15)]
327327

docs/framework/wpf/graphics-multimedia/how-to-specify-handoffbehavior-between-storyboard-animations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ This example shows how to specify handoff behavior between storyboard animations
1818
- <xref:System.Windows.Media.Animation.BeginStoryboard>
1919
- <xref:System.Windows.Media.Animation.BeginStoryboard.HandoffBehavior%2A>
2020
- [Animation Overview](../../../../docs/framework/wpf/graphics-multimedia/animation-overview.md)
21-
- [Animation and Timing](https://msdn.microsoft.com/library/7d83765b-d5ae-41b1-b423-80206e1124aa)
2221
- [Animation and Timing How-to Topics](animation-and-timing-how-to-topics.md)

docs/framework/wpf/graphics-multimedia/property-animation-techniques-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This topic describes the different approaches for animating properties: storyboa
5252
|--------------------------------|-------------------|-----------|----------------------|-------------------|-------------|
5353
|<xref:System.Windows.Media.Animation.BeginStoryboard> and an <xref:System.Windows.EventTrigger>|Yes|Yes|Yes|Yes|[Animate a Property by Using a Storyboard](../../../../docs/framework/wpf/graphics-multimedia/how-to-animate-a-property-by-using-a-storyboard.md)|
5454
|<xref:System.Windows.Media.Animation.BeginStoryboard> and a property <xref:System.Windows.Trigger>|No|Yes|Yes|Yes|[Trigger an Animation When a Property Value Changes](../../../../docs/framework/wpf/graphics-multimedia/how-to-trigger-an-animation-when-a-property-value-changes.md)|
55-
|<xref:System.Windows.Media.Animation.BeginStoryboard> and a <xref:System.Windows.DataTrigger>|No|Yes|Yes|Yes|[How to: Trigger an Animation When Data Changes](https://msdn.microsoft.com/library/a736bb3a-2ae5-479a-a33a-75a27055d863)|
55+
|<xref:System.Windows.Media.Animation.BeginStoryboard> and a <xref:System.Windows.DataTrigger>|No|Yes|Yes|Yes|[How to: Trigger an Animation When Data Changes](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.5/aa970679(v=vs.90))|
5656
|<xref:System.Windows.Media.Animation.Storyboard.Begin%2A> method|Yes|No|No|No|[Animate a Property by Using a Storyboard](../../../../docs/framework/wpf/graphics-multimedia/how-to-animate-a-property-by-using-a-storyboard.md)|
5757

5858
For more information about <xref:System.Windows.Media.Animation.Storyboard> objects, see the [Storyboards Overview](../../../../docs/framework/wpf/graphics-multimedia/storyboards-overview.md).

0 commit comments

Comments
 (0)