Visual Studio 2010 中的 DragAllow 属性在哪里?
我读到 这篇文章介绍了 C# 中控件的 DragAllow 属性。但我在 Visual Studio 2010 中找不到此属性。
我正在尝试为优化校准启用拖放功能。这里有人知道这件事吗?
I read in this article about DragAllow property of controls in C#. But I cannot found this property in Visual Studio 2010.
I'm trying to enable Drag and Drop for Picture Control. Does somebody here know about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Visual Studio 2005 开始,
DragAllow
属性已重命名为AllowDrop
。请参阅MSDN 上的相关文档。您阅读的文章必须是旧文章,或者是使用旧版本的 Visual Studio 编写的。
但是,您还应该注意,
AllowDrop
属性对于PictureBox
控件是隐藏的。该函数签名将BrowsableAttribute
设置为 False。根据文档:为什么做出这个选择是任何人的猜测,但您仍然可以在您的源代码(尽管没有 IntelliSense 的好处)。
As of Visual Studio 2005, the
DragAllow
property was renamed toAllowDrop
.See the relevant documentation on MSDN. The article you read must either be an old one, or written with an older version of Visual Studio in mind.
However, you should also note that the
AllowDrop
property is hidden for thePictureBox
control. The function signature has theBrowsableAttribute
set to False. According to the documentation:Why this choice was made is anyone's guess, but you can still set it manually in your source code (albeit without the benefit of IntelliSense).