Прочетете на английски Редактиране

Споделяне чрез


Behavior Class

Definition

Represents the Behavior objects that are managed by a BehaviorService.

C#
public abstract class Behavior
Inheritance
Behavior

Examples

The following code example demonstrates how to create your own class based on the Behavior class that responds to user clicks. This code example is part of a larger example provided for the BehaviorService class.

C#
class MyGlyph : Glyph
{
    Control control;
    BehaviorService behaviorSvc;

    public MyGlyph(BehaviorService behaviorSvc, Control control) : 
        base(new MyBehavior())
    {
        this.behaviorSvc = behaviorSvc;
        this.control = control;
    }

    public override Rectangle Bounds
    {
        get
        {
            // Create a glyph that is 10x10 and sitting
            // in the middle of the control.  Glyph coordinates
            // are in adorner window coordinates, so we must map
            // using the behavior service.
            Point edge = behaviorSvc.ControlToAdornerWindow(control);
            Size size = control.Size;
            Point center = new Point(edge.X + (size.Width / 2), 
                edge.Y + (size.Height / 2));

            Rectangle bounds = new Rectangle(
                center.X - 5,
                center.Y - 5,
                10,
                10);

            return bounds;
        }
    }

    public override Cursor GetHitTest(Point p)
    {
        // GetHitTest is called to see if the point is
        // within this glyph.  This gives us a chance to decide
        // what cursor to show.  Returning null from here means
        // the mouse pointer is not currently inside of the glyph.
        // Returning a valid cursor here indicates the pointer is
        // inside the glyph, and also enables our Behavior property
        // as the active behavior.
        if (Bounds.Contains(p))
        {
            return Cursors.Hand;
        }

        return null;
    }

    public override void Paint(PaintEventArgs pe)
    {
        // Draw our glyph. It is simply a blue ellipse.
        pe.Graphics.FillEllipse(Brushes.Blue, Bounds);
    }

    // By providing our own behavior we can do something interesting
    // when the user clicks or manipulates our glyph.
    class MyBehavior : Behavior
    {
        public override bool OnMouseUp(Glyph g, MouseButtons button)
        {
            MessageBox.Show("Hey, you clicked the mouse here");
            return true; // indicating we processed this event.
        }
    }
}

Remarks

This class can be extended to develop any type of user interface behavior, including selection, drag, and resize behaviors.

For more information, see Behavior Service Overview.

Бележка

Your Behavior type must be associated with a Glyph type. Glyph-independent behaviors are not supported.

Constructors

Behavior()

Initializes a new instance of the Behavior class.

Behavior(Boolean, BehaviorService)

Initializes a new instance of the Behavior class with the given BehaviorService.

Properties

Cursor

Gets the cursor that should be displayed for this behavior.

DisableAllCommands

Gets a value indicating whether MenuCommand objects should be disabled.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
FindCommand(CommandID)

Intercepts commands.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
OnDragDrop(Glyph, DragEventArgs)

Permits custom drag-and-drop behavior.

OnDragEnter(Glyph, DragEventArgs)

Permits custom drag-enter behavior.

OnDragLeave(Glyph, EventArgs)

Permits custom drag-leave behavior.

OnDragOver(Glyph, DragEventArgs)

Permits custom drag-over behavior.

OnGiveFeedback(Glyph, GiveFeedbackEventArgs)

Permits custom drag-and-drop feedback behavior.

OnLoseCapture(Glyph, EventArgs)

Called by the adorner window when it loses mouse capture.

OnMouseDoubleClick(Glyph, MouseButtons, Point)

Called when any double-click message enters the adorner window of the BehaviorService.

OnMouseDown(Glyph, MouseButtons, Point)

Called when any mouse-down message enters the adorner window of the BehaviorService.

OnMouseEnter(Glyph)

Called when any mouse-enter message enters the adorner window of the BehaviorService.

OnMouseHover(Glyph, Point)

Called when any mouse-hover message enters the adorner window of the BehaviorService.

OnMouseLeave(Glyph)

Called when any mouse-leave message enters the adorner window of the BehaviorService.

OnMouseMove(Glyph, MouseButtons, Point)

Called when any mouse-move message enters the adorner window of the BehaviorService.

OnMouseUp(Glyph, MouseButtons)

Called when any mouse-up message enters the adorner window of the BehaviorService.

OnQueryContinueDrag(Glyph, QueryContinueDragEventArgs)

Sends this drag-and-drop event from the adorner window to the appropriate Behavior or hit-tested Glyph.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

Продукт Версии
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also