+
-
-
-
+
+
+
{% endhighlight %}
{% highlight c# %}
SfMultiColumnDropDownControl sfMultiColumn = new SfMultiColumnDropDownControl();
sfMultiColumn.AutoGenerateColumns = false;
-sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = “OrderID” });
-sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = “CustomerID” });
-sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = “Country” });
+sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = "OrderID" });
+sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = "CustomerID" });
+sfMultiColumn.Columns.Add(new GridTextColumn() { MappingName = "Country" });
{% endhighlight %}
{% endtabs %}
diff --git a/wpf/TreeGrid/Column-Sizing.md b/wpf/TreeGrid/Column-Sizing.md
index acbe2d1ea..14ccbc6c7 100644
--- a/wpf/TreeGrid/Column-Sizing.md
+++ b/wpf/TreeGrid/Column-Sizing.md
@@ -50,8 +50,8 @@ While setting the `TreeGrid.ColumnSizer` property, all column widths are calcula
AutoFillColumn
|
-While setting the `TreeGrid.ColumnSizer` property, all column widths are calculated based on content of cell and the last column fills the remaining column width as auto fill. And possible to set any column to fill the remaining space instead of last column by setting `TreeGridColumn.ColumnSizer` as `AutoFillColumn` for that particular column.
+While setting the `TreeGrid.ColumnSizer` property, all column widths are calculated based on content of cell and the last column fills the remaining column width as auto fill. And possible to set any column to fill the remaining space instead of last column by setting `TreeGridColumn.ColumnSizer` as `AutoFillColumn` for that particular column.
|