• HOME
  • PRODUCTS
  • DEMOS
  • BUY
  • BLOG
  • FORUM
  • DOCUMENTATION
  • ABOUT
  • FREE EVALUATION
Search Results for

    Show / Hide Table of Contents

    FormDesignerControl Class

    Definition

    Namespace: Alternet.FormDesigner.Wpf
    Assembly: Alternet.FormDesigner.Wpf.v8.dll

    Surface hosting the WPF designer.

    Inheritance
    Object
    DispatcherObject
    DependencyObject
    Visual
    UIElement
    FrameworkElement
    Control
    ContentControl
    DesignSurfaceBase
    FormDesignerControl
    Implements
    IAnimatable
    IFrameworkInputElement
    IInputElement
    ISupportInitialize
    IQueryAmbient
    IAddChild
    INotifyPropertyChanged
    IFormDesignerControl
    IFormDesignerLoader
    Syntax
    [TemplatePart(Name = "PART_DesignContent", Type = typeof(ContentControl))]
    [TemplatePart(Name = "PART_Zoom", Type = typeof(ZoomControl))]
    public class FormDesignerControl : DesignSurfaceBase, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild, INotifyPropertyChanged, IFormDesignerControl, IFormDesignerLoader

    Remarks

    Form Designer supports all common editing operations such as dragging, selecting and deleting components and controls; changing their size and z-order; aligning them horizontally or vertically; and copying and pasting controls. Like Visual Studio WPF Form Designer, it serializes its content into XAML source.

    Here are some of the essential features provided by the FormDesigner:

    • Placing controls on the design surface and arranging them.
    • Save/load forms being designed.
    • Write event handlers code and run the designed form.

    The DesignerCommands property provides an interface to Form Designer commands, such as Copy/Paste, Undo/Redo, Aligning and Arranging controls, etc.

    The SelectedItems property contains a list of selected components or controls.

    Constructors

    FormDesignerControl()

    Initializes a new instance of the FormDesignerControl class with default settings.

    Properties

    AutoAddComponentAssemblyReferences

    Gets or sets a boolean value indicating whether designer should automatically try to add assembly references after a control is added.

    AutoSaveToSource

    Gets or sets a boolean value indicating whether designer should automatically translate changes to the source upon every change.

    ControlManipulationOptions
    CurrentTool

    Gets or sets the currently selected tool

    DesignerCommands

    Represents a collection of standard designer commands like selecting, copying, pasting, moving and resizing controls.

    IsBeingLoaded
    IsModified

    Indicates if the designer content was modified.

    IsSmartDiffCodeSerializationRequired

    Gets or sets method used to identify whether FormDesignerControl content should be saved only by taking into account code difference.

    ReferencedAssemblies

    Gets collection of assemblies where the controls and components used on the form being designed are declared.

    SelectedItems

    Contains list of selected DesignItem.

    ServiceProvider

    Provides custom support to other objects.

    Source

    Gets or sets form designer Source.

    Methods

    CanCancelSelectedTool()
    CancelSelectedTool()
    CanCopyOrCut()

    Indicates whether selected items can be copied or cut.

    CanDelete()

    Indicates whether selected items can be deleted.

    CanPaste()

    Indicates whether clibpoard contains controls that can be pasted to the designer

    CanRedo()

    Indicating whether the redo operation can be performed.

    CanSelectAll()

    Indicating whether the SelectAll operation can be performed.

    CanUndo()

    Indicating whether the undo operation can be performed.

    Copy()

    Copies selected items content.

    CreateEventHandlerService()
    CreateResourceResolutionService()
    Cut()

    Cuts selected items content.

    Delete()

    Deletes selected items.

    Descendants(DesignItem)

    Returns list child DesignItem objects.

    DescendantsAndSelf(DesignItem)
    GetDefaultXamlLoadSettings()
    InitializeDesigner(DesignContext)
    LoadDesigner(String)

    Initializes the designer content from the specified xaml string.

    LoadDesigner(XmlReader, XamlLoadSettings)

    Initializes the designer content from the specified XmlReader.

    LoadDesignerFromFile(String)

    Initializes the designer content from the specified xaml file name.

    OnApplyTemplate()

    Is invoked whenever application code or internal processes call System.Windows.FrameworkElement.ApplyTemplate.

    OnPreviewMouseLeftButtonDown(MouseButtonEventArgs)
    Paste()

    Pastes selected items content.

    Redo()

    Executes redo command.

    Reload()

    Reloads form to be designed from the source.

    Save()

    Translates changes made in the designer to the source.

    Save(StringBuilder)

    Serializes designer to C# or Visual Basic file.

    ScrollIntoView(DesignItem)

    Scrolls the specified child control into view on an auto-scroll enabled control.

    SelectAll()

    Selects all controls on design surface.

    TryAddComponentAssemblyReferences(Type)
    Undo()

    Executes redo command.

    UnloadDesigner()

    Unloads the designer content.

    UnselectAll()

    Deselects all control on design surface.

    Events

    DesignedContentChanged

    Occurs when user modifies any aspect of the control being designed.

    NavigateToUserMethodRequested

    Occurs when form designer is requested to navigate to the event handler. For example, when user double clicks on the control.

    ReferencedAssembliesChanged
    SelectionChanged

    Occurs when user selects different control in the designer.

    ShowPropertiesRequested

    Occurs when user request to open Property Window.

    SourceChanged

    Occurs when designer's source was changed.

    Inherited Members
    DesignSurfaceBase.DesignContext
    DesignSurfaceBase.DesignPanel
    DesignSurfaceBase.ZoomControl
    DesignSurfaceBase.PropertyChanged
    DesignSurfaceBase.OnPropertyChanged(String)
    ContentControl.ContentProperty
    ContentControl.HasContentProperty
    ContentControl.ContentTemplateProperty
    ContentControl.ContentTemplateSelectorProperty
    ContentControl.ContentStringFormatProperty
    ContentControl.IAddChild.AddChild(Object)
    ContentControl.AddChild(Object)
    ContentControl.IAddChild.AddText(String)
    ContentControl.AddText(String)
    ContentControl.OnContentChanged(Object, Object)
    ContentControl.OnContentTemplateChanged(DataTemplate, DataTemplate)
    ContentControl.OnContentTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector)
    ContentControl.OnContentStringFormatChanged(String, String)
    ContentControl.LogicalChildren
    ContentControl.Content
    ContentControl.HasContent
    ContentControl.ContentTemplate
    ContentControl.ContentTemplateSelector
    ContentControl.ContentStringFormat
    Control.BorderBrushProperty
    Control.BorderThicknessProperty
    Control.BackgroundProperty
    Control.ForegroundProperty
    Control.FontFamilyProperty
    Control.FontSizeProperty
    Control.FontStretchProperty
    Control.FontStyleProperty
    Control.FontWeightProperty
    Control.HorizontalContentAlignmentProperty
    Control.VerticalContentAlignmentProperty
    Control.TabIndexProperty
    Control.IsTabStopProperty
    Control.PaddingProperty
    Control.TemplateProperty
    Control.PreviewMouseDoubleClickEvent
    Control.MouseDoubleClickEvent
    Control.OnTemplateChanged(ControlTemplate, ControlTemplate)
    Control.ToString()
    Control.OnPreviewMouseDoubleClick(MouseButtonEventArgs)
    Control.OnMouseDoubleClick(MouseButtonEventArgs)
    Control.MeasureOverride(Size)
    Control.ArrangeOverride(Size)
    Control.BorderBrush
    Control.BorderThickness
    Control.Background
    Control.Foreground
    Control.FontFamily
    Control.FontSize
    Control.FontStretch
    Control.FontStyle
    Control.FontWeight
    Control.HorizontalContentAlignment
    Control.VerticalContentAlignment
    Control.TabIndex
    Control.IsTabStop
    Control.Padding
    Control.Template
    Control.HandlesScrolling
    Control.PreviewMouseDoubleClick
    Control.MouseDoubleClick
    FrameworkElement.StyleProperty
    FrameworkElement.OverridesDefaultStyleProperty
    FrameworkElement.UseLayoutRoundingProperty
    FrameworkElement.DefaultStyleKeyProperty
    FrameworkElement.DataContextProperty
    FrameworkElement.BindingGroupProperty
    FrameworkElement.LanguageProperty
    FrameworkElement.NameProperty
    FrameworkElement.TagProperty
    FrameworkElement.InputScopeProperty
    FrameworkElement.RequestBringIntoViewEvent
    FrameworkElement.SizeChangedEvent
    FrameworkElement.ActualWidthProperty
    FrameworkElement.ActualHeightProperty
    FrameworkElement.LayoutTransformProperty
    FrameworkElement.WidthProperty
    FrameworkElement.MinWidthProperty
    FrameworkElement.MaxWidthProperty
    FrameworkElement.HeightProperty
    FrameworkElement.MinHeightProperty
    FrameworkElement.MaxHeightProperty
    FrameworkElement.FlowDirectionProperty
    FrameworkElement.MarginProperty
    FrameworkElement.HorizontalAlignmentProperty
    FrameworkElement.VerticalAlignmentProperty
    FrameworkElement.FocusVisualStyleProperty
    FrameworkElement.CursorProperty
    FrameworkElement.ForceCursorProperty
    FrameworkElement.LoadedEvent
    FrameworkElement.UnloadedEvent
    FrameworkElement.ToolTipProperty
    FrameworkElement.ContextMenuProperty
    FrameworkElement.ToolTipOpeningEvent
    FrameworkElement.ToolTipClosingEvent
    FrameworkElement.ContextMenuOpeningEvent
    FrameworkElement.ContextMenuClosingEvent
    FrameworkElement.OnStyleChanged(Style, Style)
    FrameworkElement.ParentLayoutInvalidated(UIElement)
    FrameworkElement.ApplyTemplate()
    FrameworkElement.BeginStoryboard(Storyboard)
    FrameworkElement.BeginStoryboard(Storyboard, HandoffBehavior)
    FrameworkElement.BeginStoryboard(Storyboard, HandoffBehavior, Boolean)
    FrameworkElement.GetVisualChild(Int32)
    FrameworkElement.IQueryAmbient.IsAmbientPropertyAvailable(String)
    FrameworkElement.GetTemplateChild(String)
    FrameworkElement.FindResource(Object)
    FrameworkElement.TryFindResource(Object)
    FrameworkElement.SetResourceReference(DependencyProperty, Object)
    FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs)
    FrameworkElement.OnVisualParentChanged(DependencyObject)
    FrameworkElement.GetBindingExpression(DependencyProperty)
    FrameworkElement.SetBinding(DependencyProperty, BindingBase)
    FrameworkElement.SetBinding(DependencyProperty, String)
    FrameworkElement.GetUIParentCore()
    FrameworkElement.BringIntoView()
    FrameworkElement.BringIntoView(Rect)
    FrameworkElement.GetFlowDirection(DependencyObject)
    FrameworkElement.SetFlowDirection(DependencyObject, FlowDirection)
    FrameworkElement.MeasureCore(Size)
    FrameworkElement.ArrangeCore(Rect)
    FrameworkElement.OnRenderSizeChanged(SizeChangedInfo)
    FrameworkElement.GetLayoutClip(Size)
    FrameworkElement.MoveFocus(TraversalRequest)
    FrameworkElement.PredictFocus(FocusNavigationDirection)
    FrameworkElement.OnGotFocus(RoutedEventArgs)
    FrameworkElement.BeginInit()
    FrameworkElement.EndInit()
    FrameworkElement.OnInitialized(EventArgs)
    FrameworkElement.OnToolTipOpening(ToolTipEventArgs)
    FrameworkElement.OnToolTipClosing(ToolTipEventArgs)
    FrameworkElement.OnContextMenuOpening(ContextMenuEventArgs)
    FrameworkElement.OnContextMenuClosing(ContextMenuEventArgs)
    FrameworkElement.RegisterName(String, Object)
    FrameworkElement.UnregisterName(String)
    FrameworkElement.FindName(String)
    FrameworkElement.UpdateDefaultStyle()
    FrameworkElement.AddLogicalChild(Object)
    FrameworkElement.RemoveLogicalChild(Object)
    FrameworkElement.Style
    FrameworkElement.OverridesDefaultStyle
    FrameworkElement.UseLayoutRounding
    FrameworkElement.DefaultStyleKey
    FrameworkElement.Triggers
    FrameworkElement.TemplatedParent
    FrameworkElement.VisualChildrenCount
    FrameworkElement.Resources
    FrameworkElement.InheritanceBehavior
    FrameworkElement.DataContext
    FrameworkElement.BindingGroup
    FrameworkElement.Language
    FrameworkElement.Name
    FrameworkElement.Tag
    FrameworkElement.InputScope
    FrameworkElement.ActualWidth
    FrameworkElement.ActualHeight
    FrameworkElement.LayoutTransform
    FrameworkElement.Width
    FrameworkElement.MinWidth
    FrameworkElement.MaxWidth
    FrameworkElement.Height
    FrameworkElement.MinHeight
    FrameworkElement.MaxHeight
    FrameworkElement.FlowDirection
    FrameworkElement.Margin
    FrameworkElement.HorizontalAlignment
    FrameworkElement.VerticalAlignment
    FrameworkElement.FocusVisualStyle
    FrameworkElement.Cursor
    FrameworkElement.ForceCursor
    FrameworkElement.IsInitialized
    FrameworkElement.IsLoaded
    FrameworkElement.ToolTip
    FrameworkElement.ContextMenu
    FrameworkElement.Parent
    FrameworkElement.TargetUpdated
    FrameworkElement.SourceUpdated
    FrameworkElement.DataContextChanged
    FrameworkElement.RequestBringIntoView
    FrameworkElement.SizeChanged
    FrameworkElement.Initialized
    FrameworkElement.Loaded
    FrameworkElement.Unloaded
    FrameworkElement.ToolTipOpening
    FrameworkElement.ToolTipClosing
    FrameworkElement.ContextMenuOpening
    FrameworkElement.ContextMenuClosing
    UIElement.PreviewMouseDownEvent
    UIElement.MouseDownEvent
    UIElement.PreviewMouseUpEvent
    UIElement.MouseUpEvent
    UIElement.PreviewMouseLeftButtonDownEvent
    UIElement.MouseLeftButtonDownEvent
    UIElement.PreviewMouseLeftButtonUpEvent
    UIElement.MouseLeftButtonUpEvent
    UIElement.PreviewMouseRightButtonDownEvent
    UIElement.MouseRightButtonDownEvent
    UIElement.PreviewMouseRightButtonUpEvent
    UIElement.MouseRightButtonUpEvent
    UIElement.PreviewMouseMoveEvent
    UIElement.MouseMoveEvent
    UIElement.PreviewMouseWheelEvent
    UIElement.MouseWheelEvent
    UIElement.MouseEnterEvent
    UIElement.MouseLeaveEvent
    UIElement.GotMouseCaptureEvent
    UIElement.LostMouseCaptureEvent
    UIElement.QueryCursorEvent
    UIElement.PreviewStylusDownEvent
    UIElement.StylusDownEvent
    UIElement.PreviewStylusUpEvent
    UIElement.StylusUpEvent
    UIElement.PreviewStylusMoveEvent
    UIElement.StylusMoveEvent
    UIElement.PreviewStylusInAirMoveEvent
    UIElement.StylusInAirMoveEvent
    UIElement.StylusEnterEvent
    UIElement.StylusLeaveEvent
    UIElement.PreviewStylusInRangeEvent
    UIElement.StylusInRangeEvent
    UIElement.PreviewStylusOutOfRangeEvent
    UIElement.StylusOutOfRangeEvent
    UIElement.PreviewStylusSystemGestureEvent
    UIElement.StylusSystemGestureEvent
    UIElement.GotStylusCaptureEvent
    UIElement.LostStylusCaptureEvent
    UIElement.StylusButtonDownEvent
    UIElement.StylusButtonUpEvent
    UIElement.PreviewStylusButtonDownEvent
    UIElement.PreviewStylusButtonUpEvent
    UIElement.PreviewKeyDownEvent
    UIElement.KeyDownEvent
    UIElement.PreviewKeyUpEvent
    UIElement.KeyUpEvent
    UIElement.PreviewGotKeyboardFocusEvent
    UIElement.GotKeyboardFocusEvent
    UIElement.PreviewLostKeyboardFocusEvent
    UIElement.LostKeyboardFocusEvent
    UIElement.PreviewTextInputEvent
    UIElement.TextInputEvent
    UIElement.PreviewQueryContinueDragEvent
    UIElement.QueryContinueDragEvent
    UIElement.PreviewGiveFeedbackEvent
    UIElement.GiveFeedbackEvent
    UIElement.PreviewDragEnterEvent
    UIElement.DragEnterEvent
    UIElement.PreviewDragOverEvent
    UIElement.DragOverEvent
    UIElement.PreviewDragLeaveEvent
    UIElement.DragLeaveEvent
    UIElement.PreviewDropEvent
    UIElement.DropEvent
    UIElement.PreviewTouchDownEvent
    UIElement.TouchDownEvent
    UIElement.PreviewTouchMoveEvent
    UIElement.TouchMoveEvent
    UIElement.PreviewTouchUpEvent
    UIElement.TouchUpEvent
    UIElement.GotTouchCaptureEvent
    UIElement.LostTouchCaptureEvent
    UIElement.TouchEnterEvent
    UIElement.TouchLeaveEvent
    UIElement.IsMouseDirectlyOverProperty
    UIElement.IsMouseOverProperty
    UIElement.IsStylusOverProperty
    UIElement.IsKeyboardFocusWithinProperty
    UIElement.IsMouseCapturedProperty
    UIElement.IsMouseCaptureWithinProperty
    UIElement.IsStylusDirectlyOverProperty
    UIElement.IsStylusCapturedProperty
    UIElement.IsStylusCaptureWithinProperty
    UIElement.IsKeyboardFocusedProperty
    UIElement.AreAnyTouchesDirectlyOverProperty
    UIElement.AreAnyTouchesOverProperty
    UIElement.AreAnyTouchesCapturedProperty
    UIElement.AreAnyTouchesCapturedWithinProperty
    UIElement.AllowDropProperty
    UIElement.RenderTransformProperty
    UIElement.RenderTransformOriginProperty
    UIElement.OpacityProperty
    UIElement.OpacityMaskProperty
    UIElement.BitmapEffectProperty
    UIElement.EffectProperty
    UIElement.BitmapEffectInputProperty
    UIElement.CacheModeProperty
    UIElement.UidProperty
    UIElement.VisibilityProperty
    UIElement.ClipToBoundsProperty
    UIElement.ClipProperty
    UIElement.SnapsToDevicePixelsProperty
    UIElement.GotFocusEvent
    UIElement.LostFocusEvent
    UIElement.IsFocusedProperty
    UIElement.IsEnabledProperty
    UIElement.IsHitTestVisibleProperty
    UIElement.IsVisibleProperty
    UIElement.FocusableProperty
    UIElement.IsManipulationEnabledProperty
    UIElement.ManipulationStartingEvent
    UIElement.ManipulationStartedEvent
    UIElement.ManipulationDeltaEvent
    UIElement.ManipulationInertiaStartingEvent
    UIElement.ManipulationBoundaryFeedbackEvent
    UIElement.ManipulationCompletedEvent
    UIElement.ApplyAnimationClock(DependencyProperty, AnimationClock)
    UIElement.ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior)
    UIElement.BeginAnimation(DependencyProperty, AnimationTimeline)
    UIElement.BeginAnimation(DependencyProperty, AnimationTimeline, HandoffBehavior)
    UIElement.GetAnimationBaseValue(DependencyProperty)
    UIElement.RaiseEvent(RoutedEventArgs)
    UIElement.AddHandler(RoutedEvent, Delegate)
    UIElement.AddHandler(RoutedEvent, Delegate, Boolean)
    UIElement.RemoveHandler(RoutedEvent, Delegate)
    UIElement.AddToEventRoute(EventRoute, RoutedEventArgs)
    UIElement.OnPreviewMouseDown(MouseButtonEventArgs)
    UIElement.OnMouseDown(MouseButtonEventArgs)
    UIElement.OnPreviewMouseUp(MouseButtonEventArgs)
    UIElement.OnMouseUp(MouseButtonEventArgs)
    UIElement.OnMouseLeftButtonDown(MouseButtonEventArgs)
    UIElement.OnPreviewMouseLeftButtonUp(MouseButtonEventArgs)
    UIElement.OnMouseLeftButtonUp(MouseButtonEventArgs)
    UIElement.OnPreviewMouseRightButtonDown(MouseButtonEventArgs)
    UIElement.OnMouseRightButtonDown(MouseButtonEventArgs)
    UIElement.OnPreviewMouseRightButtonUp(MouseButtonEventArgs)
    UIElement.OnMouseRightButtonUp(MouseButtonEventArgs)
    UIElement.OnPreviewMouseMove(MouseEventArgs)
    UIElement.OnMouseMove(MouseEventArgs)
    UIElement.OnPreviewMouseWheel(MouseWheelEventArgs)
    UIElement.OnMouseWheel(MouseWheelEventArgs)
    UIElement.OnMouseEnter(MouseEventArgs)
    UIElement.OnMouseLeave(MouseEventArgs)
    UIElement.OnGotMouseCapture(MouseEventArgs)
    UIElement.OnLostMouseCapture(MouseEventArgs)
    UIElement.OnQueryCursor(QueryCursorEventArgs)
    UIElement.OnPreviewStylusDown(StylusDownEventArgs)
    UIElement.OnStylusDown(StylusDownEventArgs)
    UIElement.OnPreviewStylusUp(StylusEventArgs)
    UIElement.OnStylusUp(StylusEventArgs)
    UIElement.OnPreviewStylusMove(StylusEventArgs)
    UIElement.OnStylusMove(StylusEventArgs)
    UIElement.OnPreviewStylusInAirMove(StylusEventArgs)
    UIElement.OnStylusInAirMove(StylusEventArgs)
    UIElement.OnStylusEnter(StylusEventArgs)
    UIElement.OnStylusLeave(StylusEventArgs)
    UIElement.OnPreviewStylusInRange(StylusEventArgs)
    UIElement.OnStylusInRange(StylusEventArgs)
    UIElement.OnPreviewStylusOutOfRange(StylusEventArgs)
    UIElement.OnStylusOutOfRange(StylusEventArgs)
    UIElement.OnPreviewStylusSystemGesture(StylusSystemGestureEventArgs)
    UIElement.OnStylusSystemGesture(StylusSystemGestureEventArgs)
    UIElement.OnGotStylusCapture(StylusEventArgs)
    UIElement.OnLostStylusCapture(StylusEventArgs)
    UIElement.OnStylusButtonDown(StylusButtonEventArgs)
    UIElement.OnStylusButtonUp(StylusButtonEventArgs)
    UIElement.OnPreviewStylusButtonDown(StylusButtonEventArgs)
    UIElement.OnPreviewStylusButtonUp(StylusButtonEventArgs)
    UIElement.OnPreviewKeyDown(KeyEventArgs)
    UIElement.OnKeyDown(KeyEventArgs)
    UIElement.OnPreviewKeyUp(KeyEventArgs)
    UIElement.OnKeyUp(KeyEventArgs)
    UIElement.OnPreviewGotKeyboardFocus(KeyboardFocusChangedEventArgs)
    UIElement.OnGotKeyboardFocus(KeyboardFocusChangedEventArgs)
    UIElement.OnPreviewLostKeyboardFocus(KeyboardFocusChangedEventArgs)
    UIElement.OnLostKeyboardFocus(KeyboardFocusChangedEventArgs)
    UIElement.OnPreviewTextInput(TextCompositionEventArgs)
    UIElement.OnTextInput(TextCompositionEventArgs)
    UIElement.OnPreviewQueryContinueDrag(QueryContinueDragEventArgs)
    UIElement.OnQueryContinueDrag(QueryContinueDragEventArgs)
    UIElement.OnPreviewGiveFeedback(GiveFeedbackEventArgs)
    UIElement.OnGiveFeedback(GiveFeedbackEventArgs)
    UIElement.OnPreviewDragEnter(DragEventArgs)
    UIElement.OnDragEnter(DragEventArgs)
    UIElement.OnPreviewDragOver(DragEventArgs)
    UIElement.OnDragOver(DragEventArgs)
    UIElement.OnPreviewDragLeave(DragEventArgs)
    UIElement.OnDragLeave(DragEventArgs)
    UIElement.OnPreviewDrop(DragEventArgs)
    UIElement.OnDrop(DragEventArgs)
    UIElement.OnPreviewTouchDown(TouchEventArgs)
    UIElement.OnTouchDown(TouchEventArgs)
    UIElement.OnPreviewTouchMove(TouchEventArgs)
    UIElement.OnTouchMove(TouchEventArgs)
    UIElement.OnPreviewTouchUp(TouchEventArgs)
    UIElement.OnTouchUp(TouchEventArgs)
    UIElement.OnGotTouchCapture(TouchEventArgs)
    UIElement.OnLostTouchCapture(TouchEventArgs)
    UIElement.OnTouchEnter(TouchEventArgs)
    UIElement.OnTouchLeave(TouchEventArgs)
    UIElement.OnIsMouseDirectlyOverChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsStylusDirectlyOverChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsStylusCapturedChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs)
    UIElement.OnIsKeyboardFocusedChanged(DependencyPropertyChangedEventArgs)
    UIElement.InvalidateMeasure()
    UIElement.InvalidateArrange()
    UIElement.InvalidateVisual()
    UIElement.OnChildDesiredSizeChanged(UIElement)
    UIElement.Measure(Size)
    UIElement.Arrange(Rect)
    UIElement.OnRender(DrawingContext)
    UIElement.UpdateLayout()
    UIElement.TranslatePoint(Point, UIElement)
    UIElement.InputHitTest(Point)
    UIElement.CaptureMouse()
    UIElement.ReleaseMouseCapture()
    UIElement.CaptureStylus()
    UIElement.ReleaseStylusCapture()
    UIElement.Focus()
    UIElement.OnAccessKey(AccessKeyEventArgs)
    UIElement.HitTestCore(PointHitTestParameters)
    UIElement.HitTestCore(GeometryHitTestParameters)
    UIElement.OnLostFocus(RoutedEventArgs)
    UIElement.OnCreateAutomationPeer()
    UIElement.OnManipulationStarting(ManipulationStartingEventArgs)
    UIElement.OnManipulationStarted(ManipulationStartedEventArgs)
    UIElement.OnManipulationDelta(ManipulationDeltaEventArgs)
    UIElement.OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs)
    UIElement.OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs)
    UIElement.OnManipulationCompleted(ManipulationCompletedEventArgs)
    UIElement.CaptureTouch(TouchDevice)
    UIElement.ReleaseTouchCapture(TouchDevice)
    UIElement.ReleaseAllTouchCaptures()
    UIElement.HasAnimatedProperties
    UIElement.InputBindings
    UIElement.CommandBindings
    UIElement.AllowDrop
    UIElement.StylusPlugIns
    UIElement.DesiredSize
    UIElement.IsMeasureValid
    UIElement.IsArrangeValid
    UIElement.RenderSize
    UIElement.RenderTransform
    UIElement.RenderTransformOrigin
    UIElement.IsMouseDirectlyOver
    UIElement.IsMouseOver
    UIElement.IsStylusOver
    UIElement.IsKeyboardFocusWithin
    UIElement.IsMouseCaptured
    UIElement.IsMouseCaptureWithin
    UIElement.IsStylusDirectlyOver
    UIElement.IsStylusCaptured
    UIElement.IsStylusCaptureWithin
    UIElement.IsKeyboardFocused
    UIElement.IsInputMethodEnabled
    UIElement.Opacity
    UIElement.OpacityMask
    UIElement.BitmapEffect
    UIElement.Effect
    UIElement.BitmapEffectInput
    UIElement.CacheMode
    UIElement.Uid
    UIElement.Visibility
    UIElement.ClipToBounds
    UIElement.Clip
    UIElement.SnapsToDevicePixels
    UIElement.HasEffectiveKeyboardFocus
    UIElement.IsFocused
    UIElement.IsEnabled
    UIElement.IsEnabledCore
    UIElement.IsHitTestVisible
    UIElement.IsVisible
    UIElement.Focusable
    UIElement.PersistId
    UIElement.IsManipulationEnabled
    UIElement.AreAnyTouchesOver
    UIElement.AreAnyTouchesDirectlyOver
    UIElement.AreAnyTouchesCapturedWithin
    UIElement.AreAnyTouchesCaptured
    UIElement.TouchesCaptured
    UIElement.TouchesCapturedWithin
    UIElement.TouchesOver
    UIElement.TouchesDirectlyOver
    UIElement.PreviewMouseDown
    UIElement.MouseDown
    UIElement.PreviewMouseUp
    UIElement.MouseUp
    UIElement.PreviewMouseLeftButtonDown
    UIElement.MouseLeftButtonDown
    UIElement.PreviewMouseLeftButtonUp
    UIElement.MouseLeftButtonUp
    UIElement.PreviewMouseRightButtonDown
    UIElement.MouseRightButtonDown
    UIElement.PreviewMouseRightButtonUp
    UIElement.MouseRightButtonUp
    UIElement.PreviewMouseMove
    UIElement.MouseMove
    UIElement.PreviewMouseWheel
    UIElement.MouseWheel
    UIElement.MouseEnter
    UIElement.MouseLeave
    UIElement.GotMouseCapture
    UIElement.LostMouseCapture
    UIElement.QueryCursor
    UIElement.PreviewStylusDown
    UIElement.StylusDown
    UIElement.PreviewStylusUp
    UIElement.StylusUp
    UIElement.PreviewStylusMove
    UIElement.StylusMove
    UIElement.PreviewStylusInAirMove
    UIElement.StylusInAirMove
    UIElement.StylusEnter
    UIElement.StylusLeave
    UIElement.PreviewStylusInRange
    UIElement.StylusInRange
    UIElement.PreviewStylusOutOfRange
    UIElement.StylusOutOfRange
    UIElement.PreviewStylusSystemGesture
    UIElement.StylusSystemGesture
    UIElement.GotStylusCapture
    UIElement.LostStylusCapture
    UIElement.StylusButtonDown
    UIElement.StylusButtonUp
    UIElement.PreviewStylusButtonDown
    UIElement.PreviewStylusButtonUp
    UIElement.PreviewKeyDown
    UIElement.KeyDown
    UIElement.PreviewKeyUp
    UIElement.KeyUp
    UIElement.PreviewGotKeyboardFocus
    UIElement.GotKeyboardFocus
    UIElement.PreviewLostKeyboardFocus
    UIElement.LostKeyboardFocus
    UIElement.PreviewTextInput
    UIElement.TextInput
    UIElement.PreviewQueryContinueDrag
    UIElement.QueryContinueDrag
    UIElement.PreviewGiveFeedback
    UIElement.GiveFeedback
    UIElement.PreviewDragEnter
    UIElement.DragEnter
    UIElement.PreviewDragOver
    UIElement.DragOver
    UIElement.PreviewDragLeave
    UIElement.DragLeave
    UIElement.PreviewDrop
    UIElement.Drop
    UIElement.PreviewTouchDown
    UIElement.TouchDown
    UIElement.PreviewTouchMove
    UIElement.TouchMove
    UIElement.PreviewTouchUp
    UIElement.TouchUp
    UIElement.GotTouchCapture
    UIElement.LostTouchCapture
    UIElement.TouchEnter
    UIElement.TouchLeave
    UIElement.IsMouseDirectlyOverChanged
    UIElement.IsKeyboardFocusWithinChanged
    UIElement.IsMouseCapturedChanged
    UIElement.IsMouseCaptureWithinChanged
    UIElement.IsStylusDirectlyOverChanged
    UIElement.IsStylusCapturedChanged
    UIElement.IsStylusCaptureWithinChanged
    UIElement.IsKeyboardFocusedChanged
    UIElement.LayoutUpdated
    UIElement.GotFocus
    UIElement.LostFocus
    UIElement.IsEnabledChanged
    UIElement.IsHitTestVisibleChanged
    UIElement.IsVisibleChanged
    UIElement.FocusableChanged
    UIElement.ManipulationStarting
    UIElement.ManipulationStarted
    UIElement.ManipulationDelta
    UIElement.ManipulationInertiaStarting
    UIElement.ManipulationBoundaryFeedback
    UIElement.ManipulationCompleted
    Visual.AddVisualChild(Visual)
    Visual.RemoveVisualChild(Visual)
    Visual.OnVisualChildrenChanged(DependencyObject, DependencyObject)
    Visual.IsAncestorOf(DependencyObject)
    Visual.IsDescendantOf(DependencyObject)
    Visual.FindCommonVisualAncestor(DependencyObject)
    Visual.TransformToAncestor(Visual)
    Visual.TransformToAncestor(Visual3D)
    Visual.TransformToDescendant(Visual)
    Visual.TransformToVisual(Visual)
    Visual.PointToScreen(Point)
    Visual.PointFromScreen(Point)
    Visual.VisualParent
    Visual.VisualTransform
    Visual.VisualEffect
    Visual.VisualBitmapEffect
    Visual.VisualBitmapEffectInput
    Visual.VisualCacheMode
    Visual.VisualScrollableAreaClip
    Visual.VisualClip
    Visual.VisualOffset
    Visual.VisualOpacity
    Visual.VisualEdgeMode
    Visual.VisualBitmapScalingMode
    Visual.VisualClearTypeHint
    Visual.VisualTextRenderingMode
    Visual.VisualTextHintingMode
    Visual.VisualOpacityMask
    Visual.VisualXSnappingGuidelines
    Visual.VisualYSnappingGuidelines
    DependencyObject.Equals(Object)
    DependencyObject.GetHashCode()
    DependencyObject.GetValue(DependencyProperty)
    DependencyObject.SetValue(DependencyProperty, Object)
    DependencyObject.SetCurrentValue(DependencyProperty, Object)
    DependencyObject.SetValue(DependencyPropertyKey, Object)
    DependencyObject.ClearValue(DependencyProperty)
    DependencyObject.ClearValue(DependencyPropertyKey)
    DependencyObject.CoerceValue(DependencyProperty)
    DependencyObject.InvalidateProperty(DependencyProperty)
    DependencyObject.ShouldSerializeProperty(DependencyProperty)
    DependencyObject.ReadLocalValue(DependencyProperty)
    DependencyObject.GetLocalValueEnumerator()
    DependencyObject.DependencyObjectType
    DependencyObject.IsSealed
    DispatcherObject.Dispatcher
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()

    Implements

    System.Windows.Media.Animation.IAnimatable
    System.Windows.IFrameworkInputElement
    System.Windows.IInputElement
    System.ComponentModel.ISupportInitialize
    System.Windows.Markup.IQueryAmbient
    System.Windows.Markup.IAddChild
    System.ComponentModel.INotifyPropertyChanged
    IFormDesignerControl
    IFormDesignerLoader

    Extension Methods

    RemoveChildHelper.RemoveChild(DependencyObject, UIElement)
    VisualTreeUtility.FindChild<T>(DependencyObject, String)
    VisualTreeUtility.EnumerateParents(DependencyObject)
    ExtensionMethods.GetVisualAncestors(DependencyObject)
    ExtensionMethods.AddCommandHandler(UIElement, ICommand, Action)
    ExtensionMethods.AddCommandHandler(UIElement, ICommand, Action, Func<Boolean>)
    ModelTools.CreateVisualTree(UIElement)
    UIHelpers.GetParentObject(DependencyObject, Boolean)
    UIHelpers.TryFindParent<T>(DependencyObject, Boolean)
    UIHelpers.TryFindChild<T>(DependencyObject)
    UIHelpers.TryFindChild<T>(DependencyObject, String)
    In This Article
    Back to top Copyright AlterNET Software Download PDF