IXRButtonBase (Windows Embedded CE 6.0)

1/6/2010

This class represents the base class for all button controls, such as IXRButton, IXRRepeatButton, and IXRToggleButton.

Syntax

class IXRButtonBase : public IXRContentControl

Methods

Method Description

IXRButtonBase::AddClickEventHandler

Attaches a delegate to the Click event for this button. When the Click event is raised by this button, this delegate will be invoked.

IXRButtonBase::GetClickMode

Retrieves a value that specifies the action that raises the Click event for this button control.

IXRButtonBase::GetIsFocused

Retrieves a value that indicates whether the button control has the UI focus.

IXRButtonBase::GetIsMouseOver

Retrieves a value that indicates whether the mouse pointer is located over this button control.

IXRButtonBase::GetIsPressed

Retrieves a value that indicates whether this button control is currently in a pressed state.

IXRButtonBase::RemoveClickEventHandler

Removes a delegate from the Click event for this button control.

IXRButtonBase::SetClickMode

Sets a value that specifies the action that raises the Click event for this button control.

Remarks

You can attach a delegate to the Click event in order to handle the event raised when the user clicks an object derived from IXRButtonBase. To do this, use IXRButtonBase::AddClickEventHandler.

Note

You should use the Click event to detect a button click instead of using MouseLeftButtonDown or MouseLeftButtonUp.

Inheritance Hierarchy

IXRDependencyObject

    IXRUIElement

        IXRFrameworkElement

            IXRControl

                IXRContentControl

                    IXRButtonBase

                        IXRButton

                        IXRRepeatButton

                        IXRToggleButton

                            IXRCheckBox

                            IXRRadioButton

.NET Framework Equivalent

System.Windows.Controls.Primitives.ButtonBase

Requirements

Header XamlRuntime.h
sysgen SYSGEN_XAML_RUNTIME
Windows Embedded CE Windows Embedded CE 6.0 R3

See Also

Reference

Classes for UI Element Management

Other Resources