gpt4 book ai didi

asp.net mvc c# 工具提示

转载 作者:行者123 更新时间:2023-12-04 01:26:22 26 4
gpt4 key购买 nike

为文本框创建工具提示文本的最佳和最简单的方法是什么

最佳答案

我发现这是最简单且易于维护的方法:

  • 使用数据注释为模型的属性创建描述
    例子:
    [Display(Name="MyTextBox", Description = "Title for your entry")]
    public string MyTextBox{ get; set; }
  • 然后在您的 View 中使用以下方法访问上面的描述:
    @Html.TextBoxFor(model => model.MyTextBox, new { title = ModelMetadata.FromLambdaExpression(model => model.MyTextBox, ViewData ).Description })
  • 关于asp.net mvc c# 工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3377932/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com