近いもの:
@Html.DropDownListFor(m => m.UserRole,
new SelectList(Model.Roles, "UserRoleId", "UserRole", Model.Roles.First().UserRoleId),
new { /* any html attributes here */ })
DropDownListFor を設定するには、SelectList が必要です。必要な HTML 属性については、次を追加できます。
new { @class = "DropDown", @id = "dropdownUserRole" }