Yanıtlar:
Bu MSDN makalesine ve Stack Overflow'da bir örnek kullanıma bakın .
Aşağıdaki Linq / POCO sınıfına sahip olduğunuzu varsayalım:
public class Color
{
public int ColorId { get; set; }
public string Name { get; set; }
}
Ve aşağıdaki modele sahip olduğunuzu varsayalım:
public class PageModel
{
public int MyColorId { get; set; }
}
Ve son olarak, aşağıdaki renk listesine sahip olduğunuzu varsayalım. Bir Linq sorgusundan, statik bir listeden vb. Gelebilirler:
public static IEnumerable<Color> Colors = new List<Color> {
new Color {
ColorId = 1,
Name = "Red"
},
new Color {
ColorId = 2,
Name = "Blue"
}
};
Sizin görünümünüzde aşağıdaki gibi bir açılır liste oluşturabilirsiniz:
<%= Html.DropDownListFor(n => n.MyColorId,
new SelectList(Colors, "ColorId", "Name")) %>
<%:
Html.DropDownListFor(
model => model.Color,
new SelectList(
new List<Object>{
new { value = 0 , text = "Red" },
new { value = 1 , text = "Blue" },
new { value = 2 , text = "Green"}
},
"value",
"text",
Model.Color
)
)
%>
veya hiçbir sınıf yazamazsınız, doğrudan görünüme böyle bir şey koyamazsınız.
Modelde bir Sözlük ile başlayarak çok fazla şişman parmaktan kaçının
namespace EzPL8.Models
{
public class MyEggs
{
public Dictionary<int, string> Egg { get; set; }
public MyEggs()
{
Egg = new Dictionary<int, string>()
{
{ 0, "No Preference"},
{ 1, "I hate eggs"},
{ 2, "Over Easy"},
{ 3, "Sunny Side Up"},
{ 4, "Scrambled"},
{ 5, "Hard Boiled"},
{ 6, "Eggs Benedict"}
};
}
}
Görünümde görüntülemek için bir listeye dönüştürün
@Html.DropDownListFor(m => m.Egg.Keys,
new SelectList(
Model.Egg,
"Key",
"Value"))
Merhabalar, bunu bir projede nasıl yaptım:
@Html.DropDownListFor(model => model.MyOption,
new List<SelectListItem> {
new SelectListItem { Value = "0" , Text = "Option A" },
new SelectListItem { Value = "1" , Text = "Option B" },
new SelectListItem { Value = "2" , Text = "Option C" }
},
new { @class="myselect"})
Umarım birisine yardımcı olur. Teşekkürler
Veya bir veritabanı bağlamından geliyorsa,
@Html.DropDownListFor(model => model.MyOption, db.MyOptions.Select(x => new SelectListItem { Text = x.Name, Value = x.Id.ToString() }))
"Lütfen bir Öğe seçin" ile
@Html.DropDownListFor(model => model.ContentManagement_Send_Section,
new List<SelectListItem> { new SelectListItem { Value = "0", Text = "Plese Select one Item" } }
.Concat(db.NameOfPaperSections.Select(x => new SelectListItem { Text = x.NameOfPaperSection, Value = x.PaperSectionID.ToString() })),
new { @class = "myselect" })
Kodlardan türetilmiştir: Master Programmer && Joel Wahlund ;
King Referansı: https://stackoverflow.com/a/1528193/1395101 JaredPar ;
Teşekkürler Usta Programcı && Joel Wahlund && JaredPar ;
İyi şanslar arkadaşlar.
@using (Html.BeginForm()) {
<p>Do you like pizza?
@Html.DropDownListFor(x => x.likesPizza, new[] {
new SelectListItem() {Text = "Yes", Value = bool.TrueString},
new SelectListItem() {Text = "No", Value = bool.FalseString}
}, "Choose an option")
</p>
<input type = "submit" value = "Submit my answer" />
}
Bence bu yanıt, DropDownList'inizin tüm kodunu doğrudan görünümde koyduğunuz için Berat'ın yanıtına benzer. Ama bunun ay / n (boolean) açılır listesi oluşturmanın etkili bir yolu olduğunu düşünüyorum, bu yüzden paylaşmak istedim.
Yeni başlayanlar için bazı notlar:
Umarım bu birine yardımcı olur,