Skip to content

Commit 161d67b

Browse files
authored
rename smart tag sample names (#3879)
1 parent 18d581e commit 161d67b

9 files changed

+40
-40
lines changed

xml/System.ComponentModel.Design/DesignerActionHeaderItem.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
3636
For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
3737
38-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
39-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
38+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
39+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
4040
4141
]]></format>
4242
</remarks>
@@ -94,8 +94,8 @@
9494
9595
For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
9696
97-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
98-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
97+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
98+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
9999
100100
]]></format>
101101
</remarks>

xml/System.ComponentModel.Design/DesignerActionItem.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
3939
For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
4040
41-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
42-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
41+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
42+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
4343
4444
]]></format>
4545
</remarks>

xml/System.ComponentModel.Design/DesignerActionItemCollection.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
## Examples
2727
The following code example demonstrates how to create a <xref:System.ComponentModel.Design.DesignerActionItemCollection> and populate it to form a smart tag list. This code example is part of a larger example provided for the <xref:System.ComponentModel.Design.DesignerActionItem> class.
2828
29-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
30-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
29+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
30+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
3131
3232
]]></format>
3333
</remarks>
@@ -63,8 +63,8 @@
6363
## Examples
6464
The following code example demonstrates how to create a <xref:System.ComponentModel.Design.DesignerActionItemCollection> and populate it to form a smart tag list. This code example is part of a larger example provided for the <xref:System.ComponentModel.Design.DesignerActionItem> class.
6565
66-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
67-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
66+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
67+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
6868
6969
]]></format>
7070
</remarks>
@@ -103,8 +103,8 @@
103103
## Examples
104104
The following code example demonstrates how to create a <xref:System.ComponentModel.Design.DesignerActionItemCollection> and populate it to form a smart tag list. This code example is part of a larger example provided for the <xref:System.ComponentModel.Design.DesignerActionItem> class.
105105
106-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
107-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
106+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
107+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
108108
109109
]]></format>
110110
</remarks>

xml/System.ComponentModel.Design/DesignerActionList.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
4545
For a complete explanation of this code example, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
4646
47-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#2](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#2)]
48-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#2](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#2)]
47+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#2](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#2)]
48+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#2](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#2)]
4949
5050
]]></format>
5151
</remarks>
@@ -97,8 +97,8 @@
9797
9898
For a complete explanation of this code example, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
9999
100-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#4](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#4)]
101-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#4](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#4)]
100+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#4](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#4)]
101+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#4](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#4)]
102102
103103
]]></format>
104104
</remarks>
@@ -148,8 +148,8 @@
148148
149149
For a complete explanation of this code example, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
150150
151-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
152-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
151+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
152+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
153153
154154
]]></format>
155155
</remarks>
@@ -277,8 +277,8 @@
277277
278278
For a complete explanation of this code example, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
279279
280-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
281-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
280+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
281+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
282282
283283
]]></format>
284284
</remarks>

xml/System.ComponentModel.Design/DesignerActionListCollection.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
5353
For a full example, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
5454
55-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#8](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#8)]
56-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#8](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#8)]
55+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#8](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#8)]
56+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#8](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#8)]
5757
58-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#9](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#9)]
59-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#9](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#9)]
58+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#9](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#9)]
59+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#9](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#9)]
6060
6161
]]></format>
6262
</remarks>

xml/System.ComponentModel.Design/DesignerActionMethodItem.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
3636
For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
3737
38-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
39-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
38+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
39+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
4040
4141
]]></format>
4242
</remarks>
@@ -360,8 +360,8 @@
360360
361361
For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
362362
363-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
364-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
363+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
364+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
365365
366366
]]></format>
367367
</remarks>

xml/System.ComponentModel.Design/DesignerActionPropertyItem.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
## Examples
4545
The following code example demonstrates how to create a collection of <xref:System.ComponentModel.Design.DesignerActionItem> objects. For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
4646
47-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
48-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
47+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
48+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
4949
5050
]]></format>
5151
</remarks>
@@ -204,8 +204,8 @@
204204
## Examples
205205
The following code example demonstrates how to create a collection of <xref:System.ComponentModel.Design.DesignerActionItem> objects. For a full example of implementing smart tags, see [How to: Attach Smart Tags to a Windows Forms Component](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ms171830(v=vs.120)).
206206
207-
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/CS/smarttags.cs#7)]
208-
[!code-vb[System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddSmartTagsToWFComponent/VB/smarttags.vb#7)]
207+
[!code-csharp[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/csharp/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/CS/designeractions.cs#7)]
208+
[!code-vb[System.ComponentModel.Design.DesignerAction.AddDesignerActions#7](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.ComponentModel.Design.DesignerAction.AddDesignerActions/VB/designeractions.vb#7)]
209209
210210
]]></format>
211211
</remarks>

0 commit comments

Comments
 (0)