3

ゲーム内で物事を整理できるように、ツールに取り組んでいます。

これは私のクラスです:

//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でまったく可能ですか?

(注記: 私はまだ学生ですが、学校のプロジェクトではありません)

4

1 に答える 1