Powershell Windowクラスのメンバーを一覧で取得する

Xamlファイルで作成するGUIの実態となるWindowオブジェクト

System.Windows 名前空間は、いくつかの重要な Windows Presentation Foundation (WPF) 基本要素クラス、WPF プロパティ システムおよびイベント ロジックをサポートする各種クラス、WPF のコアおよびフレームワークによって広範に使用されるその他の型を提供するとなっている。

今回はwindowsクラス(トップ画面)のメンバー一覧を取得

サンプルコード

実行結果

TypeNameNameMemberTypeDefinition
System.Windows.WindowActivatedEventSystem.EventHandler Activated(System.Object, System.EventArgs)
System.Windows.WindowClosedEventSystem.EventHandler Closed(System.Object, System.EventArgs)
System.Windows.WindowClosingEventSystem.ComponentModel.CancelEventHandler Closing(System.Object, System.ComponentModel.CancelEventArgs)
System.Windows.WindowContentRenderedEventSystem.EventHandler ContentRendered(System.Object, System.EventArgs)
System.Windows.WindowContextMenuClosingEventSystem.Windows.Controls.ContextMenuEventHandler ContextMenuClosing(System.Object, System.Windows.Controls.ContextMenuEventArgs)
System.Windows.WindowContextMenuOpeningEventSystem.Windows.Controls.ContextMenuEventHandler ContextMenuOpening(System.Object, System.Windows.Controls.ContextMenuEventArgs)
System.Windows.WindowDataContextChangedEventSystem.Windows.DependencyPropertyChangedEventHandler DataContextChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowDeactivatedEventSystem.EventHandler Deactivated(System.Object, System.EventArgs)
System.Windows.WindowDpiChangedEventSystem.Windows.DpiChangedEventHandler DpiChanged(System.Object, System.Windows.DpiChangedEventArgs)
System.Windows.WindowDragEnterEventSystem.Windows.DragEventHandler DragEnter(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowDragLeaveEventSystem.Windows.DragEventHandler DragLeave(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowDragOverEventSystem.Windows.DragEventHandler DragOver(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowDropEventSystem.Windows.DragEventHandler Drop(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowFocusableChangedEventSystem.Windows.DependencyPropertyChangedEventHandler FocusableChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowGiveFeedbackEventSystem.Windows.GiveFeedbackEventHandler GiveFeedback(System.Object, System.Windows.GiveFeedbackEventArgs)
System.Windows.WindowGotFocusEventSystem.Windows.RoutedEventHandler GotFocus(System.Object, System.Windows.RoutedEventArgs)
System.Windows.WindowGotKeyboardFocusEventSystem.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
System.Windows.WindowGotMouseCaptureEventSystem.Windows.Input.MouseEventHandler GotMouseCapture(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowGotStylusCaptureEventSystem.Windows.Input.StylusEventHandler GotStylusCapture(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowGotTouchCaptureEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] GotTouchCapture(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowInitializedEventSystem.EventHandler Initialized(System.Object, System.EventArgs)
System.Windows.WindowIsEnabledChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsEnabledChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsHitTestVisibleChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsHitTestVisibleChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsKeyboardFocusedChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsKeyboardFocusWithinChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsMouseCapturedChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsMouseCapturedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsMouseCaptureWithinChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsMouseCaptureWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsMouseDirectlyOverChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsMouseDirectlyOverChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsStylusCapturedChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsStylusCapturedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsStylusCaptureWithinChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsStylusCaptureWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsStylusDirectlyOverChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsStylusDirectlyOverChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowIsVisibleChangedEventSystem.Windows.DependencyPropertyChangedEventHandler IsVisibleChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs)
System.Windows.WindowKeyDownEventSystem.Windows.Input.KeyEventHandler KeyDown(System.Object, System.Windows.Input.KeyEventArgs)
System.Windows.WindowKeyUpEventSystem.Windows.Input.KeyEventHandler KeyUp(System.Object, System.Windows.Input.KeyEventArgs)
System.Windows.WindowLayoutUpdatedEventSystem.EventHandler LayoutUpdated(System.Object, System.EventArgs)
System.Windows.WindowLoadedEventSystem.Windows.RoutedEventHandler Loaded(System.Object, System.Windows.RoutedEventArgs)
System.Windows.WindowLocationChangedEventSystem.EventHandler LocationChanged(System.Object, System.EventArgs)
System.Windows.WindowLostFocusEventSystem.Windows.RoutedEventHandler LostFocus(System.Object, System.Windows.RoutedEventArgs)
System.Windows.WindowLostKeyboardFocusEventSystem.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
System.Windows.WindowLostMouseCaptureEventSystem.Windows.Input.MouseEventHandler LostMouseCapture(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowLostStylusCaptureEventSystem.Windows.Input.StylusEventHandler LostStylusCapture(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowLostTouchCaptureEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] LostTouchCapture(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowManipulationBoundaryFeedbackEventSystem.EventHandler1[System.Windows.Input.ManipulationBoundaryFeedbackEventArgs] ManipulationBoundaryFeedback(System.Object, System.Windows.Input.ManipulationBoundaryFeedbackEventArgs)
System.Windows.WindowManipulationCompletedEventSystem.EventHandler1[System.Windows.Input.ManipulationCompletedEventArgs] ManipulationCompleted(System.Object, System.Windows.Input.ManipulationCompletedEventArgs)
System.Windows.WindowManipulationDeltaEventSystem.EventHandler1[System.Windows.Input.ManipulationDeltaEventArgs] ManipulationDelta(System.Object, System.Windows.Input.ManipulationDeltaEventArgs)
System.Windows.WindowManipulationInertiaStartingEventSystem.EventHandler1[System.Windows.Input.ManipulationInertiaStartingEventArgs] ManipulationInertiaStarting(System.Object, System.Windows.Input.ManipulationInertiaStartingEventArgs)
System.Windows.WindowManipulationStartedEventSystem.EventHandler1[System.Windows.Input.ManipulationStartedEventArgs] ManipulationStarted(System.Object, System.Windows.Input.ManipulationStartedEventArgs)
System.Windows.WindowManipulationStartingEventSystem.EventHandler1[System.Windows.Input.ManipulationStartingEventArgs] ManipulationStarting(System.Object, System.Windows.Input.ManipulationStartingEventArgs)
System.Windows.WindowMouseDoubleClickEventSystem.Windows.Input.MouseButtonEventHandler MouseDoubleClick(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseDownEventSystem.Windows.Input.MouseButtonEventHandler MouseDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseEnterEventSystem.Windows.Input.MouseEventHandler MouseEnter(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowMouseLeaveEventSystem.Windows.Input.MouseEventHandler MouseLeave(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowMouseLeftButtonDownEventSystem.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseLeftButtonUpEventSystem.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseMoveEventSystem.Windows.Input.MouseEventHandler MouseMove(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowMouseRightButtonDownEventSystem.Windows.Input.MouseButtonEventHandler MouseRightButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseRightButtonUpEventSystem.Windows.Input.MouseButtonEventHandler MouseRightButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseUpEventSystem.Windows.Input.MouseButtonEventHandler MouseUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowMouseWheelEventSystem.Windows.Input.MouseWheelEventHandler MouseWheel(System.Object, System.Windows.Input.MouseWheelEventArgs)
System.Windows.WindowPreviewDragEnterEventSystem.Windows.DragEventHandler PreviewDragEnter(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowPreviewDragLeaveEventSystem.Windows.DragEventHandler PreviewDragLeave(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowPreviewDragOverEventSystem.Windows.DragEventHandler PreviewDragOver(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowPreviewDropEventSystem.Windows.DragEventHandler PreviewDrop(System.Object, System.Windows.DragEventArgs)
System.Windows.WindowPreviewGiveFeedbackEventSystem.Windows.GiveFeedbackEventHandler PreviewGiveFeedback(System.Object, System.Windows.GiveFeedbackEventArgs)
System.Windows.WindowPreviewGotKeyboardFocusEventSystem.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
System.Windows.WindowPreviewKeyDownEventSystem.Windows.Input.KeyEventHandler PreviewKeyDown(System.Object, System.Windows.Input.KeyEventArgs)
System.Windows.WindowPreviewKeyUpEventSystem.Windows.Input.KeyEventHandler PreviewKeyUp(System.Object, System.Windows.Input.KeyEventArgs)
System.Windows.WindowPreviewLostKeyboardFocusEventSystem.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
System.Windows.WindowPreviewMouseDoubleClickEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseDoubleClick(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseDownEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseLeftButtonDownEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseLeftButtonUpEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseMoveEventSystem.Windows.Input.MouseEventHandler PreviewMouseMove(System.Object, System.Windows.Input.MouseEventArgs)
System.Windows.WindowPreviewMouseRightButtonDownEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseRightButtonUpEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseUpEventSystem.Windows.Input.MouseButtonEventHandler PreviewMouseUp(System.Object, System.Windows.Input.MouseButtonEventArgs)
System.Windows.WindowPreviewMouseWheelEventSystem.Windows.Input.MouseWheelEventHandler PreviewMouseWheel(System.Object, System.Windows.Input.MouseWheelEventArgs)
System.Windows.WindowPreviewQueryContinueDragEventSystem.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag(System.Object, System.Windows.QueryContinueDragEventArgs)
System.Windows.WindowPreviewStylusButtonDownEventSystem.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown(System.Object, System.Windows.Input.StylusButtonEventArgs)
System.Windows.WindowPreviewStylusButtonUpEventSystem.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp(System.Object, System.Windows.Input.StylusButtonEventArgs)
System.Windows.WindowPreviewStylusDownEventSystem.Windows.Input.StylusDownEventHandler PreviewStylusDown(System.Object, System.Windows.Input.StylusDownEventArgs)
System.Windows.WindowPreviewStylusInAirMoveEventSystem.Windows.Input.StylusEventHandler PreviewStylusInAirMove(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowPreviewStylusInRangeEventSystem.Windows.Input.StylusEventHandler PreviewStylusInRange(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowPreviewStylusMoveEventSystem.Windows.Input.StylusEventHandler PreviewStylusMove(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowPreviewStylusOutOfRangeEventSystem.Windows.Input.StylusEventHandler PreviewStylusOutOfRange(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowPreviewStylusSystemGestureEventSystem.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture(System.Object, System.Windows.Input.StylusSystemGestureEventArgs)
System.Windows.WindowPreviewStylusUpEventSystem.Windows.Input.StylusEventHandler PreviewStylusUp(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowPreviewTextInputEventSystem.Windows.Input.TextCompositionEventHandler PreviewTextInput(System.Object, System.Windows.Input.TextCompositionEventArgs)
System.Windows.WindowPreviewTouchDownEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchDown(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowPreviewTouchMoveEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchMove(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowPreviewTouchUpEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchUp(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowQueryContinueDragEventSystem.Windows.QueryContinueDragEventHandler QueryContinueDrag(System.Object, System.Windows.QueryContinueDragEventArgs)
System.Windows.WindowQueryCursorEventSystem.Windows.Input.QueryCursorEventHandler QueryCursor(System.Object, System.Windows.Input.QueryCursorEventArgs)
System.Windows.WindowRequestBringIntoViewEventSystem.Windows.RequestBringIntoViewEventHandler RequestBringIntoView(System.Object, System.Windows.RequestBringIntoViewEventArgs)
System.Windows.WindowSizeChangedEventSystem.Windows.SizeChangedEventHandler SizeChanged(System.Object, System.Windows.SizeChangedEventArgs)
System.Windows.WindowSourceInitializedEventSystem.EventHandler SourceInitialized(System.Object, System.EventArgs)
System.Windows.WindowSourceUpdatedEventSystem.EventHandler1[System.Windows.Data.DataTransferEventArgs] SourceUpdated(System.Object, System.Windows.Data.DataTransferEventArgs)
System.Windows.WindowStateChangedEventSystem.EventHandler StateChanged(System.Object, System.EventArgs)
System.Windows.WindowStylusButtonDownEventSystem.Windows.Input.StylusButtonEventHandler StylusButtonDown(System.Object, System.Windows.Input.StylusButtonEventArgs)
System.Windows.WindowStylusButtonUpEventSystem.Windows.Input.StylusButtonEventHandler StylusButtonUp(System.Object, System.Windows.Input.StylusButtonEventArgs)
System.Windows.WindowStylusDownEventSystem.Windows.Input.StylusDownEventHandler StylusDown(System.Object, System.Windows.Input.StylusDownEventArgs)
System.Windows.WindowStylusEnterEventSystem.Windows.Input.StylusEventHandler StylusEnter(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusInAirMoveEventSystem.Windows.Input.StylusEventHandler StylusInAirMove(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusInRangeEventSystem.Windows.Input.StylusEventHandler StylusInRange(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusLeaveEventSystem.Windows.Input.StylusEventHandler StylusLeave(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusMoveEventSystem.Windows.Input.StylusEventHandler StylusMove(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusOutOfRangeEventSystem.Windows.Input.StylusEventHandler StylusOutOfRange(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowStylusSystemGestureEventSystem.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture(System.Object, System.Windows.Input.StylusSystemGestureEventArgs)
System.Windows.WindowStylusUpEventSystem.Windows.Input.StylusEventHandler StylusUp(System.Object, System.Windows.Input.StylusEventArgs)
System.Windows.WindowTargetUpdatedEventSystem.EventHandler1[System.Windows.Data.DataTransferEventArgs] TargetUpdated(System.Object, System.Windows.Data.DataTransferEventArgs)
System.Windows.WindowTextInputEventSystem.Windows.Input.TextCompositionEventHandler TextInput(System.Object, System.Windows.Input.TextCompositionEventArgs)
System.Windows.WindowToolTipClosingEventSystem.Windows.Controls.ToolTipEventHandler ToolTipClosing(System.Object, System.Windows.Controls.ToolTipEventArgs)
System.Windows.WindowToolTipOpeningEventSystem.Windows.Controls.ToolTipEventHandler ToolTipOpening(System.Object, System.Windows.Controls.ToolTipEventArgs)
System.Windows.WindowTouchDownEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] TouchDown(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowTouchEnterEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] TouchEnter(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowTouchLeaveEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] TouchLeave(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowTouchMoveEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] TouchMove(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowTouchUpEventSystem.EventHandler1[System.Windows.Input.TouchEventArgs] TouchUp(System.Object, System.Windows.Input.TouchEventArgs)
System.Windows.WindowUnloadedEventSystem.Windows.RoutedEventHandler Unloaded(System.Object, System.Windows.RoutedEventArgs)
System.Windows.WindowActivateMethodbool Activate()
System.Windows.WindowAddChildMethodvoid IAddChild.AddChild(System.Object value)
System.Windows.WindowAddHandlerMethodvoid AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler), void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo), void IInputElement.AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler)
System.Windows.WindowAddTextMethodvoid IAddChild.AddText(string text)
System.Windows.WindowAddToEventRouteMethodvoid AddToEventRoute(System.Windows.EventRoute route, System.Windows.RoutedEventArgs e)
System.Windows.WindowApplyAnimationClockMethodvoid ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock), void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior), void IAnimatable.ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock), void IAnimatable.ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior)
System.Windows.WindowApplyTemplateMethodbool ApplyTemplate()
System.Windows.WindowArrangeMethodvoid Arrange(System.Windows.Rect finalRect)
System.Windows.WindowBeginAnimationMethodvoid BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation), void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior), void IAnimatable.BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation), void IAnimatable.BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior)
System.Windows.WindowBeginInitMethodvoid BeginInit(), void ISupportInitialize.BeginInit()
System.Windows.WindowBeginStoryboardMethodvoid BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard), void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior), void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable)
System.Windows.WindowBringIntoViewMethodvoid BringIntoView(), void BringIntoView(System.Windows.Rect targetRectangle)
System.Windows.WindowCaptureMouseMethodbool CaptureMouse(), bool IInputElement.CaptureMouse()
System.Windows.WindowCaptureStylusMethodbool CaptureStylus(), bool IInputElement.CaptureStylus()
System.Windows.WindowCaptureTouchMethodbool CaptureTouch(System.Windows.Input.TouchDevice touchDevice)
System.Windows.WindowCheckAccessMethodbool CheckAccess()
System.Windows.WindowClearValueMethodvoid ClearValue(System.Windows.DependencyProperty dp), void ClearValue(System.Windows.DependencyPropertyKey key)
System.Windows.WindowCloseMethodvoid Close()
System.Windows.WindowCoerceValueMethodvoid CoerceValue(System.Windows.DependencyProperty dp)
System.Windows.WindowDragMoveMethodvoid DragMove()
System.Windows.WindowEndInitMethodvoid EndInit(), void ISupportInitialize.EndInit()
System.Windows.WindowEqualsMethodbool Equals(System.Object obj)
System.Windows.WindowFindCommonVisualAncestorMethodSystem.Windows.DependencyObject FindCommonVisualAncestor(System.Windows.DependencyObject otherVisual)
System.Windows.WindowFindNameMethodSystem.Object FindName(string name)
System.Windows.WindowFindResourceMethodSystem.Object FindResource(System.Object resourceKey)
System.Windows.WindowFocusMethodbool Focus(), bool IInputElement.Focus()
System.Windows.WindowGetAnimationBaseValueMethodSystem.Object GetAnimationBaseValue(System.Windows.DependencyProperty dp), System.Object IAnimatable.GetAnimationBaseValue(System.Windows.DependencyProperty dp)
System.Windows.WindowGetBindingExpressionMethodSystem.Windows.Data.BindingExpression GetBindingExpression(System.Windows.DependencyProperty dp)
System.Windows.WindowGetHashCodeMethodint GetHashCode()
System.Windows.WindowGetLocalValueEnumeratorMethodSystem.Windows.LocalValueEnumerator GetLocalValueEnumerator()
System.Windows.WindowGetTypeMethodtype GetType()
System.Windows.WindowGetValueMethodSystem.Object GetValue(System.Windows.DependencyProperty dp)
System.Windows.WindowHideMethodvoid Hide()
System.Windows.WindowInputHitTestMethodSystem.Windows.IInputElement InputHitTest(System.Windows.Point point)
System.Windows.WindowInvalidateArrangeMethodvoid InvalidateArrange()
System.Windows.WindowInvalidateMeasureMethodvoid InvalidateMeasure()
System.Windows.WindowInvalidatePropertyMethodvoid InvalidateProperty(System.Windows.DependencyProperty dp)
System.Windows.WindowInvalidateVisualMethodvoid InvalidateVisual()
System.Windows.WindowIsAmbientPropertyAvailableMethodbool IQueryAmbient.IsAmbientPropertyAvailable(string propertyName)
System.Windows.WindowIsAncestorOfMethodbool IsAncestorOf(System.Windows.DependencyObject descendant)
System.Windows.WindowIsDescendantOfMethodbool IsDescendantOf(System.Windows.DependencyObject ancestor)
System.Windows.WindowMeasureMethodvoid Measure(System.Windows.Size availableSize)
System.Windows.WindowMoveFocusMethodbool MoveFocus(System.Windows.Input.TraversalRequest request)
System.Windows.WindowOnApplyTemplateMethodvoid OnApplyTemplate()
System.Windows.WindowPointFromScreenMethodSystem.Windows.Point PointFromScreen(System.Windows.Point point)
System.Windows.WindowPointToScreenMethodSystem.Windows.Point PointToScreen(System.Windows.Point point)
System.Windows.WindowPredictFocusMethodSystem.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction)
System.Windows.WindowRaiseEventMethodvoid RaiseEvent(System.Windows.RoutedEventArgs e), void IInputElement.RaiseEvent(System.Windows.RoutedEventArgs e)
System.Windows.WindowReadLocalValueMethodSystem.Object ReadLocalValue(System.Windows.DependencyProperty dp)
System.Windows.WindowRegisterNameMethodvoid RegisterName(string name, System.Object scopedElement)
System.Windows.WindowReleaseAllTouchCapturesMethodvoid ReleaseAllTouchCaptures()
System.Windows.WindowReleaseMouseCaptureMethodvoid ReleaseMouseCapture(), void IInputElement.ReleaseMouseCapture()
System.Windows.WindowReleaseStylusCaptureMethodvoid ReleaseStylusCapture(), void IInputElement.ReleaseStylusCapture()
System.Windows.WindowReleaseTouchCaptureMethodbool ReleaseTouchCapture(System.Windows.Input.TouchDevice touchDevice)
System.Windows.WindowRemoveHandlerMethodvoid RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler), void IInputElement.RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler)
System.Windows.WindowSetBindingMethodSystem.Windows.Data.BindingExpressionBase SetBinding(System.Windows.DependencyProperty dp, System.Windows.Data.BindingBase binding), System.Windows.Data.BindingExpression SetBinding(System.Windows.DependencyProperty dp, string path)
System.Windows.WindowSetCurrentValueMethodvoid SetCurrentValue(System.Windows.DependencyProperty dp, System.Object value)
System.Windows.WindowSetResourceReferenceMethodvoid SetResourceReference(System.Windows.DependencyProperty dp, System.Object name)
System.Windows.WindowSetValueMethodvoid SetValue(System.Windows.DependencyProperty dp, System.Object value), void SetValue(System.Windows.DependencyPropertyKey key, System.Object value)
System.Windows.WindowShouldSerializeCommandBindingsMethodbool ShouldSerializeCommandBindings()
System.Windows.WindowShouldSerializeContentMethodbool ShouldSerializeContent()
System.Windows.WindowShouldSerializeInputBindingsMethodbool ShouldSerializeInputBindings()
System.Windows.WindowShouldSerializeResourcesMethodbool ShouldSerializeResources()
System.Windows.WindowShouldSerializeStyleMethodbool ShouldSerializeStyle()
System.Windows.WindowShouldSerializeTriggersMethodbool ShouldSerializeTriggers()
System.Windows.WindowShowMethodvoid Show()
System.Windows.WindowShowDialogMethodSystem.Nullable[bool] ShowDialog()
System.Windows.WindowToStringMethodstring ToString()
System.Windows.WindowTransformToAncestorMethodSystem.Windows.Media.GeneralTransform TransformToAncestor(System.Windows.Media.Visual ancestor), System.Windows.Media.Media3D.GeneralTransform2DTo3D TransformToAncestor(System.Windows.Media.Media3D.Visual3D ancestor)
System.Windows.WindowTransformToDescendantMethodSystem.Windows.Media.GeneralTransform TransformToDescendant(System.Windows.Media.Visual descendant)
System.Windows.WindowTransformToVisualMethodSystem.Windows.Media.GeneralTransform TransformToVisual(System.Windows.Media.Visual visual)
System.Windows.WindowTranslatePointMethodSystem.Windows.Point TranslatePoint(System.Windows.Point point, System.Windows.UIElement relativeTo)
System.Windows.WindowTryFindResourceMethodSystem.Object TryFindResource(System.Object resourceKey)
System.Windows.WindowUnregisterNameMethodvoid UnregisterName(string name)
System.Windows.WindowUpdateDefaultStyleMethodvoid UpdateDefaultStyle()
System.Windows.WindowUpdateLayoutMethodvoid UpdateLayout()
System.Windows.WindowVerifyAccessMethodvoid VerifyAccess()
System.Windows.WindowActualHeightPropertydouble ActualHeight {get;}
System.Windows.WindowActualWidthPropertydouble ActualWidth {get;}
System.Windows.WindowAllowDropPropertybool AllowDrop {get;set;}
System.Windows.WindowAllowsTransparencyPropertybool AllowsTransparency {get;set;}
System.Windows.WindowAreAnyTouchesCapturedPropertybool AreAnyTouchesCaptured {get;}
System.Windows.WindowAreAnyTouchesCapturedWithinPropertybool AreAnyTouchesCapturedWithin {get;}
System.Windows.WindowAreAnyTouchesDirectlyOverPropertybool AreAnyTouchesDirectlyOver {get;}
System.Windows.WindowAreAnyTouchesOverPropertybool AreAnyTouchesOver {get;}
System.Windows.WindowBackgroundPropertySystem.Windows.Media.Brush Background {get;set;}
System.Windows.WindowBindingGroupPropertySystem.Windows.Data.BindingGroup BindingGroup {get;set;}
System.Windows.WindowBitmapEffectPropertySystem.Windows.Media.Effects.BitmapEffect BitmapEffect {get;set;}
System.Windows.WindowBitmapEffectInputPropertySystem.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput {get;set;}
System.Windows.WindowBorderBrushPropertySystem.Windows.Media.Brush BorderBrush {get;set;}
System.Windows.WindowBorderThicknessPropertySystem.Windows.Thickness BorderThickness {get;set;}
System.Windows.WindowCacheModePropertySystem.Windows.Media.CacheMode CacheMode {get;set;}
System.Windows.WindowClipPropertySystem.Windows.Media.Geometry Clip {get;set;}
System.Windows.WindowClipToBoundsPropertybool ClipToBounds {get;set;}
System.Windows.WindowCommandBindingsPropertySystem.Windows.Input.CommandBindingCollection CommandBindings {get;}
System.Windows.WindowContentPropertySystem.Object Content {get;set;}
System.Windows.WindowContentStringFormatPropertystring ContentStringFormat {get;set;}
System.Windows.WindowContentTemplatePropertySystem.Windows.DataTemplate ContentTemplate {get;set;}
System.Windows.WindowContentTemplateSelectorPropertySystem.Windows.Controls.DataTemplateSelector ContentTemplateSelector {get;set;}
System.Windows.WindowContextMenuPropertySystem.Windows.Controls.ContextMenu ContextMenu {get;set;}
System.Windows.WindowCursorPropertySystem.Windows.Input.Cursor Cursor {get;set;}
System.Windows.WindowDataContextPropertySystem.Object DataContext {get;set;}
System.Windows.WindowDependencyObjectTypePropertySystem.Windows.DependencyObjectType DependencyObjectType {get;}
System.Windows.WindowDesiredSizePropertySystem.Windows.Size DesiredSize {get;}
System.Windows.WindowDialogResultPropertySystem.Nullable[bool] DialogResult {get;set;}
System.Windows.WindowDispatcherPropertySystem.Windows.Threading.Dispatcher Dispatcher {get;}
System.Windows.WindowEffectPropertySystem.Windows.Media.Effects.Effect Effect {get;set;}
System.Windows.WindowFlowDirectionPropertySystem.Windows.FlowDirection FlowDirection {get;set;}
System.Windows.WindowFocusablePropertybool Focusable {get;set;}
System.Windows.WindowFocusVisualStylePropertySystem.Windows.Style FocusVisualStyle {get;set;}
System.Windows.WindowFontFamilyPropertySystem.Windows.Media.FontFamily FontFamily {get;set;}
System.Windows.WindowFontSizePropertydouble FontSize {get;set;}
System.Windows.WindowFontStretchPropertySystem.Windows.FontStretch FontStretch {get;set;}
System.Windows.WindowFontStylePropertySystem.Windows.FontStyle FontStyle {get;set;}
System.Windows.WindowFontWeightPropertySystem.Windows.FontWeight FontWeight {get;set;}
System.Windows.WindowForceCursorPropertybool ForceCursor {get;set;}
System.Windows.WindowForegroundPropertySystem.Windows.Media.Brush Foreground {get;set;}
System.Windows.WindowHasAnimatedPropertiesPropertybool HasAnimatedProperties {get;}
System.Windows.WindowHasContentPropertybool HasContent {get;}
System.Windows.WindowHeightPropertydouble Height {get;set;}
System.Windows.WindowHorizontalAlignmentPropertySystem.Windows.HorizontalAlignment HorizontalAlignment {get;set;}
System.Windows.WindowHorizontalContentAlignmentPropertySystem.Windows.HorizontalAlignment HorizontalContentAlignment {get;set;}
System.Windows.WindowIconPropertySystem.Windows.Media.ImageSource Icon {get;set;}
System.Windows.WindowInputBindingsPropertySystem.Windows.Input.InputBindingCollection InputBindings {get;}
System.Windows.WindowInputScopePropertySystem.Windows.Input.InputScope InputScope {get;set;}
System.Windows.WindowIsActivePropertybool IsActive {get;}
System.Windows.WindowIsArrangeValidPropertybool IsArrangeValid {get;}
System.Windows.WindowIsEnabledPropertybool IsEnabled {get;set;}
System.Windows.WindowIsFocusedPropertybool IsFocused {get;}
System.Windows.WindowIsHitTestVisiblePropertybool IsHitTestVisible {get;set;}
System.Windows.WindowIsInitializedPropertybool IsInitialized {get;}
System.Windows.WindowIsInputMethodEnabledPropertybool IsInputMethodEnabled {get;}
System.Windows.WindowIsKeyboardFocusedPropertybool IsKeyboardFocused {get;}
System.Windows.WindowIsKeyboardFocusWithinPropertybool IsKeyboardFocusWithin {get;}
System.Windows.WindowIsLoadedPropertybool IsLoaded {get;}
System.Windows.WindowIsManipulationEnabledPropertybool IsManipulationEnabled {get;set;}
System.Windows.WindowIsMeasureValidPropertybool IsMeasureValid {get;}
System.Windows.WindowIsMouseCapturedPropertybool IsMouseCaptured {get;}
System.Windows.WindowIsMouseCaptureWithinPropertybool IsMouseCaptureWithin {get;}
System.Windows.WindowIsMouseDirectlyOverPropertybool IsMouseDirectlyOver {get;}
System.Windows.WindowIsMouseOverPropertybool IsMouseOver {get;}
System.Windows.WindowIsSealedPropertybool IsSealed {get;}
System.Windows.WindowIsStylusCapturedPropertybool IsStylusCaptured {get;}
System.Windows.WindowIsStylusCaptureWithinPropertybool IsStylusCaptureWithin {get;}
System.Windows.WindowIsStylusDirectlyOverPropertybool IsStylusDirectlyOver {get;}
System.Windows.WindowIsStylusOverPropertybool IsStylusOver {get;}
System.Windows.WindowIsTabStopPropertybool IsTabStop {get;set;}
System.Windows.WindowIsVisiblePropertybool IsVisible {get;}
System.Windows.WindowLanguagePropertySystem.Windows.Markup.XmlLanguage Language {get;set;}
System.Windows.WindowLayoutTransformPropertySystem.Windows.Media.Transform LayoutTransform {get;set;}
System.Windows.WindowLeftPropertydouble Left {get;set;}
System.Windows.WindowMarginPropertySystem.Windows.Thickness Margin {get;set;}
System.Windows.WindowMaxHeightPropertydouble MaxHeight {get;set;}
System.Windows.WindowMaxWidthPropertydouble MaxWidth {get;set;}
System.Windows.WindowMinHeightPropertydouble MinHeight {get;set;}
System.Windows.WindowMinWidthPropertydouble MinWidth {get;set;}
System.Windows.WindowNamePropertystring Name {get;set;}
System.Windows.WindowOpacityPropertydouble Opacity {get;set;}
System.Windows.WindowOpacityMaskPropertySystem.Windows.Media.Brush OpacityMask {get;set;}
System.Windows.WindowOverridesDefaultStylePropertybool OverridesDefaultStyle {get;set;}
System.Windows.WindowOwnedWindowsPropertySystem.Windows.WindowCollection OwnedWindows {get;}
System.Windows.WindowOwnerPropertySystem.Windows.Window Owner {get;set;}
System.Windows.WindowPaddingPropertySystem.Windows.Thickness Padding {get;set;}
System.Windows.WindowParentPropertySystem.Windows.DependencyObject Parent {get;}
System.Windows.WindowPersistIdPropertyint PersistId {get;}
System.Windows.WindowRenderSizePropertySystem.Windows.Size RenderSize {get;set;}
System.Windows.WindowRenderTransformPropertySystem.Windows.Media.Transform RenderTransform {get;set;}
System.Windows.WindowRenderTransformOriginPropertySystem.Windows.Point RenderTransformOrigin {get;set;}
System.Windows.WindowResizeModePropertySystem.Windows.ResizeMode ResizeMode {get;set;}
System.Windows.WindowResourcesPropertySystem.Windows.ResourceDictionary Resources {get;set;}
System.Windows.WindowRestoreBoundsPropertySystem.Windows.Rect RestoreBounds {get;}
System.Windows.WindowShowActivatedPropertybool ShowActivated {get;set;}
System.Windows.WindowShowInTaskbarPropertybool ShowInTaskbar {get;set;}
System.Windows.WindowSizeToContentPropertySystem.Windows.SizeToContent SizeToContent {get;set;}
System.Windows.WindowSnapsToDevicePixelsPropertybool SnapsToDevicePixels {get;set;}
System.Windows.WindowStylePropertySystem.Windows.Style Style {get;set;}
System.Windows.WindowTabIndexPropertyint TabIndex {get;set;}
System.Windows.WindowTagPropertySystem.Object Tag {get;set;}
System.Windows.WindowTaskbarItemInfoPropertySystem.Windows.Shell.TaskbarItemInfo TaskbarItemInfo {get;set;}
System.Windows.WindowTemplatePropertySystem.Windows.Controls.ControlTemplate Template {get;set;}
System.Windows.WindowTemplatedParentPropertySystem.Windows.DependencyObject TemplatedParent {get;}
System.Windows.WindowTitlePropertystring Title {get;set;}
System.Windows.WindowToolTipPropertySystem.Object ToolTip {get;set;}
System.Windows.WindowTopPropertydouble Top {get;set;}
System.Windows.WindowTopmostPropertybool Topmost {get;set;}
System.Windows.WindowTouchesCapturedPropertySystem.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesCaptured {get;}
System.Windows.WindowTouchesCapturedWithinPropertySystem.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesCapturedWithin {get;}
System.Windows.WindowTouchesDirectlyOverPropertySystem.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesDirectlyOver {get;}
System.Windows.WindowTouchesOverPropertySystem.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesOver {get;}
System.Windows.WindowTriggersPropertySystem.Windows.TriggerCollection Triggers {get;}
System.Windows.WindowUidPropertystring Uid {get;set;}
System.Windows.WindowUseLayoutRoundingPropertybool UseLayoutRounding {get;set;}
System.Windows.WindowVerticalAlignmentPropertySystem.Windows.VerticalAlignment VerticalAlignment {get;set;}
System.Windows.WindowVerticalContentAlignmentPropertySystem.Windows.VerticalAlignment VerticalContentAlignment {get;set;}
System.Windows.WindowVisibilityPropertySystem.Windows.Visibility Visibility {get;set;}
System.Windows.WindowWidthPropertydouble Width {get;set;}
System.Windows.WindowWindowStartupLocationPropertySystem.Windows.WindowStartupLocation WindowStartupLocation {get;set;}
System.Windows.WindowWindowStatePropertySystem.Windows.WindowState WindowState {get;set;}
System.Windows.WindowWindowStylePropertySystem.Windows.WindowStyle WindowStyle {get;set;}

コメント

タイトルとURLをコピーしました