Support.GetDefault(Button) 方法

定义

注意

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

获取或设置一个值,该值确定 Button 控件是否是窗体上的默认按钮。

public:
 static bool GetDefault(System::Windows::Forms::Button ^ btn);
public static bool GetDefault (System.Windows.Forms.Button btn);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static bool GetDefault (System.Windows.Forms.Button btn);
static member GetDefault : System.Windows.Forms.Button -> bool
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member GetDefault : System.Windows.Forms.Button -> bool
Public Function GetDefault (btn As Button) As Boolean

参数

btn
Button

一个 Button 控件。

返回

如果 btn 是默认按钮,则为 true;否则为 false

属性

注解

此函数相当于检查AcceptButton属性的Form

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic 2008。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。

适用于