PrintPreviewDialog.AcceptButton 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置当用户按 Enter 键时所单击的窗体上的按钮。
public:
property System::Windows::Forms::IButtonControl ^ AcceptButton { System::Windows::Forms::IButtonControl ^ get(); void set(System::Windows::Forms::IButtonControl ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.IButtonControl AcceptButton { get; set; }
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.IButtonControl? AcceptButton { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.AcceptButton : System.Windows.Forms.IButtonControl with get, set
Public Property AcceptButton As IButtonControl
属性值
IButtonControl,表示要用作窗体的“接受”按钮的按钮。
- 属性
注解
此属性与此类无关。
此属性允许指定用户在应用程序中按下 Enter 键时发生的默认操作。 分配给此属性的按钮必须是 IButtonControl 当前窗体上或位于当前窗体上的容器中的按钮。
例如,可以使用此属性允许用户在完成时按 Enter 键,而不是使用鼠标手动单击“接受”按钮来快速导航简单表单。
如果窗体上的当前选定控件截获 ENTER 键并处理它,则可能无法激活接受按钮。 例如,多行文本框控件允许在选定 ENTER 键以在控件中插入新行字符时按下。