Skip to content

Commit 72d4074

Browse files
Updated the MultiColumnDropDown name in the C# code
1 parent 887a588 commit 72d4074

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wpf/Multi-Column-DropDown/Selection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ By default, you can select only one item at a time from the dropdown, as the def
2929
{% highlight c# %}
3030
using Syncfusion.UI.Xaml.Grid;
3131

32-
this.MultiColumnDropDown.SelectionMode = DropDownSelectionMode.Single;
32+
this.sfMultiColumn.SelectionMode = DropDownSelectionMode.Single;
3333
{% endhighlight %}
3434
{% endtabs %}
3535

@@ -57,7 +57,7 @@ You can select multiple rows at same time by setting [SelectionMode](https://hel
5757
{% highlight c# %}
5858
using Syncfusion.UI.Xaml.Grid;
5959

60-
this.MultiColumnDropDown.SelectionMode = DropDownSelectionMode.Multiple;
60+
this.sfMultiColumn.SelectionMode = DropDownSelectionMode.Multiple;
6161
{% endhighlight %}
6262
{% endtabs %}
6363
{% endcapture %}
@@ -84,7 +84,7 @@ By default, selected values in the editor are separated by `;`. You can change t
8484
{% highlight c# %}
8585
using Syncfusion.UI.Xaml.Grid;
8686

87-
this.MultiColumnDropDown.SeparatorString = "-";
87+
this.sfMultiColumn.SeparatorString = "-";
8888
{% endhighlight %}
8989
{% endtabs %}
9090

@@ -219,7 +219,7 @@ You can handle the selection operations in SfMultiColumnDropDownControl by using
219219

220220
{% tabs %}
221221
{% highlight c# %}
222-
MultiColumnDropDown.SelectionChanged += MultiColumnDropDown_SelectionChanged;
222+
sfMultiColumn.SelectionChanged += MultiColumnDropDown_SelectionChanged;
223223

224224
void MultiColumnDropDown_SelectionChanged(object sender, Syncfusion.UI.Xaml.Grid.SelectionChangedEventArgs args)
225225
{

0 commit comments

Comments
 (0)