You can add @disabled = "disabled"
to the last parameter named HtmlAttributes.
@Html.CheckBox("someNameForYourCheckBox", CheckedValue (True or Not), new { @disabled = "disabled" })
@Html.DropDownList("someNameForYourDropDown", YourSelectList (comes from Model), new { @disabled = "disabled" })