具有数据类型属性问题的自定义控件

发布于 2024-07-15 00:46:58 字数 447 浏览 4 评论 0原文

我正在构建一个自定义用户控件。 其中一个属性必须允许最终用户选择数字数据类型,例如 int、short、long、double...

我在弄清楚使用什么作为内部属性类型时遇到问题,以便当用户在属性框中选择“数据类型”选项,它将提供所有数字类型的下拉列表。

我尝试了一些变化...下面这个,在编译时将 DataType 属性显示为灰色。 它不允许我选择或 输入一个值。

   private System.ValueType _DataType;
   public System.ValueType DataType
   {

       get { return _DataType; }
       set
       {

           _DataType = value;
       }
   }

任何帮助表示赞赏。 谢谢!

I'm building a custom user control. One of the properties must allow the end user to select the numeric data type such as int, short, long, double....

I'm having a problem figuring out what to use as an internal property type, so that when the user selects the DataType option in the property box it will give them a drop down list of all the numeric types.

I've tried a few variances... This one below, when compiled displays the DataType property as grayed out. It won't allow me to select or
enter a value.

   private System.ValueType _DataType;
   public System.ValueType DataType
   {

       get { return _DataType; }
       set
       {

           _DataType = value;
       }
   }

Any help is appreciated.
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝對不後悔。 2024-07-22 00:46:58

属性编辑器不知道如何编辑类型。 修复它的最简单方法是使用它知道如何编辑的类型,例如字符串或枚举。 枚举可能最适合您想要完成的任务。

The property editor has no idea how to edit the type. The easiest way to fix it is to use a type it does know how to edit, like a string or an enum. Enum probably fits best with what you are trying to accomplish.

究竟谁懂我的在乎 2024-07-22 00:46:58

我最终使用了一个枚举 - 我认为它们应该是比这更好的答案。 在设计器中设计数据集时可以找到相同的功能。 选择数据类型时可以选择int等。

I ended up using an enum - I think their should be a better answer than this. Same functionality is found when designing datasets in the designer. When you select the data type you can choose int and others.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文