<legend id='boMRM'><style id='boMRM'><dir id='boMRM'><q id='boMRM'></q></dir></style></legend>

    <small id='boMRM'></small><noframes id='boMRM'>

      <bdo id='boMRM'></bdo><ul id='boMRM'></ul>
    <tfoot id='boMRM'></tfoot>
      <i id='boMRM'><tr id='boMRM'><dt id='boMRM'><q id='boMRM'><span id='boMRM'><b id='boMRM'><form id='boMRM'><ins id='boMRM'></ins><ul id='boMRM'></ul><sub id='boMRM'></sub></form><legend id='boMRM'></legend><bdo id='boMRM'><pre id='boMRM'><center id='boMRM'></center></pre></bdo></b><th id='boMRM'></th></span></q></dt></tr></i><div id='boMRM'><tfoot id='boMRM'></tfoot><dl id='boMRM'><fieldset id='boMRM'></fieldset></dl></div>

      1. 最小值属性的 MaxValue 属性

        MinValue amp; MaxValue attribute for properties(最小值属性的 MaxValue 属性)

        <small id='MVjpv'></small><noframes id='MVjpv'>

        <i id='MVjpv'><tr id='MVjpv'><dt id='MVjpv'><q id='MVjpv'><span id='MVjpv'><b id='MVjpv'><form id='MVjpv'><ins id='MVjpv'></ins><ul id='MVjpv'></ul><sub id='MVjpv'></sub></form><legend id='MVjpv'></legend><bdo id='MVjpv'><pre id='MVjpv'><center id='MVjpv'></center></pre></bdo></b><th id='MVjpv'></th></span></q></dt></tr></i><div id='MVjpv'><tfoot id='MVjpv'></tfoot><dl id='MVjpv'><fieldset id='MVjpv'></fieldset></dl></div>
        • <legend id='MVjpv'><style id='MVjpv'><dir id='MVjpv'><q id='MVjpv'></q></dir></style></legend>
            <bdo id='MVjpv'></bdo><ul id='MVjpv'></ul>
                  <tbody id='MVjpv'></tbody>
                • <tfoot id='MVjpv'></tfoot>
                  本文介绍了最小值属性的 MaxValue 属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  是否可以制作可以限制数字的最小值或最大值的属性.

                  Is it possible to make attribute which can limit minimum or maximum value of numbers.

                  例子:

                  [MinValue(1), MaxValue(50)]
                  public int Size { get; set; }
                  

                  当我执行 Size = -3; 时,Size 的值必须为 1.

                  and when i do Size = -3; value of Size must be 1.

                  我在 Google 中搜索并找不到有关此行为的单个示例,可能是因为无法制作?

                  I searched in Google and can't find single example about this behavior, maybe because it is not possible to make?

                  我将在属性网格中使用这些属性,因此自动验证会很方便.

                  I'm gonna use these attributes in property grid therefore having automatic validation can be handy.

                  目前我这样的解决方法来限制最小值:

                  Currently I workaround like this to limit minimum value:

                      private int size;
                  
                      [DefaultValue(8)]
                      public int Size
                      {
                          get
                          {
                              return size;
                          }
                          set
                          {
                              size = Math.Max(value, 1);
                          }
                      }
                  

                  所以这就像 MinValue(1)

                  So this acts like MinValue(1)

                  推荐答案

                  虽然可以创建自定义属性,但属性只是它们注释的成员的元数据,不能改变其行为.

                  Although it is possible to create a custom attribute, attributes are just metadata for the member they annotate, and cannot change its behavior.

                  因此,您不会使用普通属性获得所需的行为.您需要一些东西来处理属性以执行所需的行为.

                  So, you won't get the behavior you want with a plain attribute. You need something to process the attributes in order to enact the desired behavior.

                  看看 TypeConverters 一个可能性.

                  这篇关于最小值属性的 MaxValue 属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Performance overhead of using attributes in .NET(在 .NET 中使用属性的性能开销)
                  Accessing attribute info from DTE(从 DTE 访问属性信息)
                  c# Hide a property in datagridview with datasource(c#使用数据源隐藏datagridview中的属性)
                  Extract Display name and description Attribute from within a HTML helper(从 HTML 帮助器中提取显示名称和描述属性)
                  How can I force the PropertyGrid to show a custom dialog for a specific property?(如何强制 PropertyGrid 显示特定属性的自定义对话框?)
                  Associate attribute with code generated property in .net(将属性与 .net 中的代码生成属性相关联)
                  <legend id='GQw0x'><style id='GQw0x'><dir id='GQw0x'><q id='GQw0x'></q></dir></style></legend>
                • <small id='GQw0x'></small><noframes id='GQw0x'>

                    <tbody id='GQw0x'></tbody>

                      <tfoot id='GQw0x'></tfoot>

                          <bdo id='GQw0x'></bdo><ul id='GQw0x'></ul>
                          • <i id='GQw0x'><tr id='GQw0x'><dt id='GQw0x'><q id='GQw0x'><span id='GQw0x'><b id='GQw0x'><form id='GQw0x'><ins id='GQw0x'></ins><ul id='GQw0x'></ul><sub id='GQw0x'></sub></form><legend id='GQw0x'></legend><bdo id='GQw0x'><pre id='GQw0x'><center id='GQw0x'></center></pre></bdo></b><th id='GQw0x'></th></span></q></dt></tr></i><div id='GQw0x'><tfoot id='GQw0x'></tfoot><dl id='GQw0x'><fieldset id='GQw0x'></fieldset></dl></div>