我正在开发一种工具,这样我就可以在游戏中保持井井有条。
这是我的课:
//The item
public class Item
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Value { get; set; }
public ItemLabel Label { get; set; }
public ItemType Type { get; set; }
public ItemTradeType TradeType { get; set; }
public Trade Trade { get; set; }
}
是Label / Type / TradeType / Trade
枚举。
看法:
@model EveMonitorV2.Models.Item
@{
ViewBag.Title = "AddItem";
}
<h2>AddItem</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>Item</legend>
<div class="editor-label">
@Html.LabelFor(model => model.Name)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Value)
</div>
//What should be done here?
<div class="editor-field">
@Html.EditorFor(model => model.Value)
@Html.ValidationMessageFor(model => model.Value)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Trade)
</div>
<div class="editor-field">
@Html.CheckBoxFor()
@Html.ValidationMessageFor(model => model.Trade)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
枚举有一个完整的可能性列表,我想创建一个项目创建视图
我遇到的问题:
我希望能够从枚举中选择更多选项。(像这样) 类别是我的枚举。
这在 asp.net mvc 4 中是否可行?
(小注:我还是学生,但不是学校项目)