@@ -56,7 +56,7 @@ The diagram elements such as [NodeViewModel](https://help.syncfusion.com/cr/wpf/
56
56
<!-- Initialize the SymbolSource-->
57
57
< stencil:Stencil.SymbolSource >
58
58
<!-- Define the SymbolCollection-->
59
- < local :SymbolCollection>
59
+ < Syncfusion :SymbolCollection>
60
60
<syncfusion: NodeViewModel x: Name ="node" UnitHeight="70" UnitWidth="100" OffsetX="100" OffsetY="100" Shape="{StaticResource Rectangle}">
61
61
</syncfusion: NodeViewModel >
62
62
<syncfusion: ConnectorViewModel SourcePoint="100,100" TargetPoint="200,200"/>
@@ -104,7 +104,7 @@ The diagram elements such as [NodeViewModel](https://help.syncfusion.com/cr/wpf/
104
104
</Syncfusion: NodeCollection >
105
105
</Syncfusion: GroupViewModel .Nodes>
106
106
</Syncfusion: ContainerViewModel >
107
- </local : SymbolCollection >
107
+ </Syncfusion : SymbolCollection >
108
108
</stencil: Stencil .SymbolSource>
109
109
110
110
{% endhighlight %}
@@ -194,11 +194,6 @@ ContainerViewModel container = new ContainerViewModel()
194
194
(stencil.SymbolSource as SymbolCollection).Add(grp);
195
195
(stencil.SymbolSource as SymbolCollection).Add(container);
196
196
197
- //Adding the ISymbol to the SymbolCollection.
198
- public class SymbolCollection : ObservableCollection<Object >
199
- {
200
- }
201
-
202
197
{% endhighlight %}
203
198
204
199
{% endtabs %}
@@ -234,10 +229,10 @@ The [SymbolViewModel](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diag
234
229
235
230
< stencil:Stencil.SymbolSource >
236
231
<!-- Define the SymbolCollection-->
237
- < local :SymbolCollection>
232
+ < Syncfusion :SymbolCollection>
238
233
<Syncfusion: SymbolViewModel Symbol="User" SymbolTemplate="{StaticResource symboltemplate}"/>
239
234
<Syncfusion: SymbolViewModel Symbol="Diamond" SymbolTemplate="{StaticResource Diamond}"/>
240
- </local : SymbolCollection >
235
+ </Syncfusion : SymbolCollection >
241
236
</stencil: Stencil .SymbolSource>
242
237
243
238
{% endhighlight %}
@@ -264,11 +259,6 @@ SymbolViewModel symbol = new SymbolViewModel()
264
259
(stencil.SymbolSource as SymbolCollection).Add(imagenode);
265
260
(stencil.SymbolSource as SymbolCollection).Add(symbol);
266
261
267
- //Adding the ISymbol to the SymbolCollection.
268
- public class SymbolCollection : ObservableCollection<Object >
269
- {
270
- }
271
-
272
262
{% endhighlight %}
273
263
{% endtabs %}
274
264
0 commit comments