Given is the following MVC razor code which creates a dropdown from a list:
@Html.DropDownList(\"MyTestList\", null, new { @class = \"btn btn-default dropdown-t
It is very much possible, and really easy. Please Read: DropDownList bootstrap styling
All you need is:
@Html.DropDownList("movieGenre", "All", new { @class = "form-control"})
or
@Html.DropDownListFor(model => model.MovieGenreModel, SelectList, new { @class = "form-control"})