EditorViewSplitter Class
Represents a splitter that allows two IEditorView objects to be resized.
public class EditorViewSplitter : Control
- Inheritance:
- object Visual UIElement FrameworkElement Control object
Constructors
EditorViewSplitter()
Initializes an instance of the EditorViewSplitter
class.
public EditorViewSplitter()
Properties
IsDragging
Gets whether the splitter is being dragged by a pointer.
public bool IsDragging { get; }
Property Value
- bool:
true
if the splitter is being dragged by a pointer; otherwise,false
.
Methods
StartDrag(InputPointerButtonEventArgs)
Starts a splitter drag.
public void StartDrag(InputPointerButtonEventArgs sourceEventArgs)
Parameter | Type | Description |
---|---|---|
sourceEventArgs | InputPointerButtonEventArgs | The source InputPointerButtonEventArgs, which can be used to capture the pointer. |
Events
DragCompleted
Occurs when a drag has completed.
public event EventHandler<InputPointerEventArgs> DragCompleted
Event Type
DragDelta
Occurs when a drag has moved.
public event EventHandler<InputPointerEventArgs> DragDelta
Event Type
DragStarted
Occurs when a drag has started.
public event EventHandler<InputPointerEventArgs> DragStarted
Event Type
Toggled
Occurs when a double-tap toggle has occurred.