Xamlファイルで作成するGUIの実態となるWindowオブジェクト
System.Windows 名前空間は、いくつかの重要な Windows Presentation Foundation (WPF) 基本要素クラス、WPF プロパティ システムおよびイベント ロジックをサポートする各種クラス、WPF のコアおよびフレームワークによって広範に使用されるその他の型を提供するとなっている。
今回はwindowsクラス(トップ画面)のメンバー一覧を取得
サンプルコード
1 2 3 4 5 6 |
Add-Type -AssemblyName PresentationFramework # Create a window object [System.Windows.Window]$Window = New-Object System.Windows.Window $Window | Get-Member | ConvertTo-Html | Out-File -FilePath "ps.html" |
実行結果
TypeName | Name | MemberType | Definition |
---|---|---|---|
System.Windows.Window | Activated | Event | System.EventHandler Activated(System.Object, System.EventArgs) |
System.Windows.Window | Closed | Event | System.EventHandler Closed(System.Object, System.EventArgs) |
System.Windows.Window | Closing | Event | System.ComponentModel.CancelEventHandler Closing(System.Object, System.ComponentModel.CancelEventArgs) |
System.Windows.Window | ContentRendered | Event | System.EventHandler ContentRendered(System.Object, System.EventArgs) |
System.Windows.Window | ContextMenuClosing | Event | System.Windows.Controls.ContextMenuEventHandler ContextMenuClosing(System.Object, System.Windows.Controls.ContextMenuEventArgs) |
System.Windows.Window | ContextMenuOpening | Event | System.Windows.Controls.ContextMenuEventHandler ContextMenuOpening(System.Object, System.Windows.Controls.ContextMenuEventArgs) |
System.Windows.Window | DataContextChanged | Event | System.Windows.DependencyPropertyChangedEventHandler DataContextChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | Deactivated | Event | System.EventHandler Deactivated(System.Object, System.EventArgs) |
System.Windows.Window | DpiChanged | Event | System.Windows.DpiChangedEventHandler DpiChanged(System.Object, System.Windows.DpiChangedEventArgs) |
System.Windows.Window | DragEnter | Event | System.Windows.DragEventHandler DragEnter(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | DragLeave | Event | System.Windows.DragEventHandler DragLeave(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | DragOver | Event | System.Windows.DragEventHandler DragOver(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | Drop | Event | System.Windows.DragEventHandler Drop(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | FocusableChanged | Event | System.Windows.DependencyPropertyChangedEventHandler FocusableChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | GiveFeedback | Event | System.Windows.GiveFeedbackEventHandler GiveFeedback(System.Object, System.Windows.GiveFeedbackEventArgs) |
System.Windows.Window | GotFocus | Event | System.Windows.RoutedEventHandler GotFocus(System.Object, System.Windows.RoutedEventArgs) |
System.Windows.Window | GotKeyboardFocus | Event | System.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs) |
System.Windows.Window | GotMouseCapture | Event | System.Windows.Input.MouseEventHandler GotMouseCapture(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | GotStylusCapture | Event | System.Windows.Input.StylusEventHandler GotStylusCapture(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | GotTouchCapture | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] GotTouchCapture(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | Initialized | Event | System.EventHandler Initialized(System.Object, System.EventArgs) |
System.Windows.Window | IsEnabledChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsEnabledChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsHitTestVisibleChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsHitTestVisibleChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsKeyboardFocusedChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsKeyboardFocusWithinChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsMouseCapturedChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsMouseCapturedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsMouseCaptureWithinChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsMouseCaptureWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsMouseDirectlyOverChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsMouseDirectlyOverChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsStylusCapturedChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsStylusCapturedChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsStylusCaptureWithinChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsStylusCaptureWithinChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsStylusDirectlyOverChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsStylusDirectlyOverChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | IsVisibleChanged | Event | System.Windows.DependencyPropertyChangedEventHandler IsVisibleChanged(System.Object, System.Windows.DependencyPropertyChangedEventArgs) |
System.Windows.Window | KeyDown | Event | System.Windows.Input.KeyEventHandler KeyDown(System.Object, System.Windows.Input.KeyEventArgs) |
System.Windows.Window | KeyUp | Event | System.Windows.Input.KeyEventHandler KeyUp(System.Object, System.Windows.Input.KeyEventArgs) |
System.Windows.Window | LayoutUpdated | Event | System.EventHandler LayoutUpdated(System.Object, System.EventArgs) |
System.Windows.Window | Loaded | Event | System.Windows.RoutedEventHandler Loaded(System.Object, System.Windows.RoutedEventArgs) |
System.Windows.Window | LocationChanged | Event | System.EventHandler LocationChanged(System.Object, System.EventArgs) |
System.Windows.Window | LostFocus | Event | System.Windows.RoutedEventHandler LostFocus(System.Object, System.Windows.RoutedEventArgs) |
System.Windows.Window | LostKeyboardFocus | Event | System.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs) |
System.Windows.Window | LostMouseCapture | Event | System.Windows.Input.MouseEventHandler LostMouseCapture(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | LostStylusCapture | Event | System.Windows.Input.StylusEventHandler LostStylusCapture(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | LostTouchCapture | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] LostTouchCapture(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | ManipulationBoundaryFeedback | Event | System.EventHandler1[System.Windows.Input.ManipulationBoundaryFeedbackEventArgs] ManipulationBoundaryFeedback(System.Object, System.Windows.Input.ManipulationBoundaryFeedbackEventArgs) |
System.Windows.Window | ManipulationCompleted | Event | System.EventHandler1[System.Windows.Input.ManipulationCompletedEventArgs] ManipulationCompleted(System.Object, System.Windows.Input.ManipulationCompletedEventArgs) |
System.Windows.Window | ManipulationDelta | Event | System.EventHandler1[System.Windows.Input.ManipulationDeltaEventArgs] ManipulationDelta(System.Object, System.Windows.Input.ManipulationDeltaEventArgs) |
System.Windows.Window | ManipulationInertiaStarting | Event | System.EventHandler1[System.Windows.Input.ManipulationInertiaStartingEventArgs] ManipulationInertiaStarting(System.Object, System.Windows.Input.ManipulationInertiaStartingEventArgs) |
System.Windows.Window | ManipulationStarted | Event | System.EventHandler1[System.Windows.Input.ManipulationStartedEventArgs] ManipulationStarted(System.Object, System.Windows.Input.ManipulationStartedEventArgs) |
System.Windows.Window | ManipulationStarting | Event | System.EventHandler1[System.Windows.Input.ManipulationStartingEventArgs] ManipulationStarting(System.Object, System.Windows.Input.ManipulationStartingEventArgs) |
System.Windows.Window | MouseDoubleClick | Event | System.Windows.Input.MouseButtonEventHandler MouseDoubleClick(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseDown | Event | System.Windows.Input.MouseButtonEventHandler MouseDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseEnter | Event | System.Windows.Input.MouseEventHandler MouseEnter(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | MouseLeave | Event | System.Windows.Input.MouseEventHandler MouseLeave(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | MouseLeftButtonDown | Event | System.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseLeftButtonUp | Event | System.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseMove | Event | System.Windows.Input.MouseEventHandler MouseMove(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | MouseRightButtonDown | Event | System.Windows.Input.MouseButtonEventHandler MouseRightButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseRightButtonUp | Event | System.Windows.Input.MouseButtonEventHandler MouseRightButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseUp | Event | System.Windows.Input.MouseButtonEventHandler MouseUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | MouseWheel | Event | System.Windows.Input.MouseWheelEventHandler MouseWheel(System.Object, System.Windows.Input.MouseWheelEventArgs) |
System.Windows.Window | PreviewDragEnter | Event | System.Windows.DragEventHandler PreviewDragEnter(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | PreviewDragLeave | Event | System.Windows.DragEventHandler PreviewDragLeave(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | PreviewDragOver | Event | System.Windows.DragEventHandler PreviewDragOver(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | PreviewDrop | Event | System.Windows.DragEventHandler PreviewDrop(System.Object, System.Windows.DragEventArgs) |
System.Windows.Window | PreviewGiveFeedback | Event | System.Windows.GiveFeedbackEventHandler PreviewGiveFeedback(System.Object, System.Windows.GiveFeedbackEventArgs) |
System.Windows.Window | PreviewGotKeyboardFocus | Event | System.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs) |
System.Windows.Window | PreviewKeyDown | Event | System.Windows.Input.KeyEventHandler PreviewKeyDown(System.Object, System.Windows.Input.KeyEventArgs) |
System.Windows.Window | PreviewKeyUp | Event | System.Windows.Input.KeyEventHandler PreviewKeyUp(System.Object, System.Windows.Input.KeyEventArgs) |
System.Windows.Window | PreviewLostKeyboardFocus | Event | System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs) |
System.Windows.Window | PreviewMouseDoubleClick | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseDoubleClick(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseDown | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseLeftButtonDown | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseLeftButtonUp | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseMove | Event | System.Windows.Input.MouseEventHandler PreviewMouseMove(System.Object, System.Windows.Input.MouseEventArgs) |
System.Windows.Window | PreviewMouseRightButtonDown | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseRightButtonUp | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseUp | Event | System.Windows.Input.MouseButtonEventHandler PreviewMouseUp(System.Object, System.Windows.Input.MouseButtonEventArgs) |
System.Windows.Window | PreviewMouseWheel | Event | System.Windows.Input.MouseWheelEventHandler PreviewMouseWheel(System.Object, System.Windows.Input.MouseWheelEventArgs) |
System.Windows.Window | PreviewQueryContinueDrag | Event | System.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag(System.Object, System.Windows.QueryContinueDragEventArgs) |
System.Windows.Window | PreviewStylusButtonDown | Event | System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown(System.Object, System.Windows.Input.StylusButtonEventArgs) |
System.Windows.Window | PreviewStylusButtonUp | Event | System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp(System.Object, System.Windows.Input.StylusButtonEventArgs) |
System.Windows.Window | PreviewStylusDown | Event | System.Windows.Input.StylusDownEventHandler PreviewStylusDown(System.Object, System.Windows.Input.StylusDownEventArgs) |
System.Windows.Window | PreviewStylusInAirMove | Event | System.Windows.Input.StylusEventHandler PreviewStylusInAirMove(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | PreviewStylusInRange | Event | System.Windows.Input.StylusEventHandler PreviewStylusInRange(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | PreviewStylusMove | Event | System.Windows.Input.StylusEventHandler PreviewStylusMove(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | PreviewStylusOutOfRange | Event | System.Windows.Input.StylusEventHandler PreviewStylusOutOfRange(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | PreviewStylusSystemGesture | Event | System.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture(System.Object, System.Windows.Input.StylusSystemGestureEventArgs) |
System.Windows.Window | PreviewStylusUp | Event | System.Windows.Input.StylusEventHandler PreviewStylusUp(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | PreviewTextInput | Event | System.Windows.Input.TextCompositionEventHandler PreviewTextInput(System.Object, System.Windows.Input.TextCompositionEventArgs) |
System.Windows.Window | PreviewTouchDown | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchDown(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | PreviewTouchMove | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchMove(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | PreviewTouchUp | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] PreviewTouchUp(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | QueryContinueDrag | Event | System.Windows.QueryContinueDragEventHandler QueryContinueDrag(System.Object, System.Windows.QueryContinueDragEventArgs) |
System.Windows.Window | QueryCursor | Event | System.Windows.Input.QueryCursorEventHandler QueryCursor(System.Object, System.Windows.Input.QueryCursorEventArgs) |
System.Windows.Window | RequestBringIntoView | Event | System.Windows.RequestBringIntoViewEventHandler RequestBringIntoView(System.Object, System.Windows.RequestBringIntoViewEventArgs) |
System.Windows.Window | SizeChanged | Event | System.Windows.SizeChangedEventHandler SizeChanged(System.Object, System.Windows.SizeChangedEventArgs) |
System.Windows.Window | SourceInitialized | Event | System.EventHandler SourceInitialized(System.Object, System.EventArgs) |
System.Windows.Window | SourceUpdated | Event | System.EventHandler1[System.Windows.Data.DataTransferEventArgs] SourceUpdated(System.Object, System.Windows.Data.DataTransferEventArgs) |
System.Windows.Window | StateChanged | Event | System.EventHandler StateChanged(System.Object, System.EventArgs) |
System.Windows.Window | StylusButtonDown | Event | System.Windows.Input.StylusButtonEventHandler StylusButtonDown(System.Object, System.Windows.Input.StylusButtonEventArgs) |
System.Windows.Window | StylusButtonUp | Event | System.Windows.Input.StylusButtonEventHandler StylusButtonUp(System.Object, System.Windows.Input.StylusButtonEventArgs) |
System.Windows.Window | StylusDown | Event | System.Windows.Input.StylusDownEventHandler StylusDown(System.Object, System.Windows.Input.StylusDownEventArgs) |
System.Windows.Window | StylusEnter | Event | System.Windows.Input.StylusEventHandler StylusEnter(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusInAirMove | Event | System.Windows.Input.StylusEventHandler StylusInAirMove(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusInRange | Event | System.Windows.Input.StylusEventHandler StylusInRange(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusLeave | Event | System.Windows.Input.StylusEventHandler StylusLeave(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusMove | Event | System.Windows.Input.StylusEventHandler StylusMove(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusOutOfRange | Event | System.Windows.Input.StylusEventHandler StylusOutOfRange(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | StylusSystemGesture | Event | System.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture(System.Object, System.Windows.Input.StylusSystemGestureEventArgs) |
System.Windows.Window | StylusUp | Event | System.Windows.Input.StylusEventHandler StylusUp(System.Object, System.Windows.Input.StylusEventArgs) |
System.Windows.Window | TargetUpdated | Event | System.EventHandler1[System.Windows.Data.DataTransferEventArgs] TargetUpdated(System.Object, System.Windows.Data.DataTransferEventArgs) |
System.Windows.Window | TextInput | Event | System.Windows.Input.TextCompositionEventHandler TextInput(System.Object, System.Windows.Input.TextCompositionEventArgs) |
System.Windows.Window | ToolTipClosing | Event | System.Windows.Controls.ToolTipEventHandler ToolTipClosing(System.Object, System.Windows.Controls.ToolTipEventArgs) |
System.Windows.Window | ToolTipOpening | Event | System.Windows.Controls.ToolTipEventHandler ToolTipOpening(System.Object, System.Windows.Controls.ToolTipEventArgs) |
System.Windows.Window | TouchDown | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] TouchDown(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | TouchEnter | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] TouchEnter(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | TouchLeave | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] TouchLeave(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | TouchMove | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] TouchMove(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | TouchUp | Event | System.EventHandler1[System.Windows.Input.TouchEventArgs] TouchUp(System.Object, System.Windows.Input.TouchEventArgs) |
System.Windows.Window | Unloaded | Event | System.Windows.RoutedEventHandler Unloaded(System.Object, System.Windows.RoutedEventArgs) |
System.Windows.Window | Activate | Method | bool Activate() |
System.Windows.Window | AddChild | Method | void IAddChild.AddChild(System.Object value) |
System.Windows.Window | AddHandler | Method | void 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.Window | AddText | Method | void IAddChild.AddText(string text) |
System.Windows.Window | AddToEventRoute | Method | void AddToEventRoute(System.Windows.EventRoute route, System.Windows.RoutedEventArgs e) |
System.Windows.Window | ApplyAnimationClock | Method | void 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.Window | ApplyTemplate | Method | bool ApplyTemplate() |
System.Windows.Window | Arrange | Method | void Arrange(System.Windows.Rect finalRect) |
System.Windows.Window | BeginAnimation | Method | void 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.Window | BeginInit | Method | void BeginInit(), void ISupportInitialize.BeginInit() |
System.Windows.Window | BeginStoryboard | Method | void 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.Window | BringIntoView | Method | void BringIntoView(), void BringIntoView(System.Windows.Rect targetRectangle) |
System.Windows.Window | CaptureMouse | Method | bool CaptureMouse(), bool IInputElement.CaptureMouse() |
System.Windows.Window | CaptureStylus | Method | bool CaptureStylus(), bool IInputElement.CaptureStylus() |
System.Windows.Window | CaptureTouch | Method | bool CaptureTouch(System.Windows.Input.TouchDevice touchDevice) |
System.Windows.Window | CheckAccess | Method | bool CheckAccess() |
System.Windows.Window | ClearValue | Method | void ClearValue(System.Windows.DependencyProperty dp), void ClearValue(System.Windows.DependencyPropertyKey key) |
System.Windows.Window | Close | Method | void Close() |
System.Windows.Window | CoerceValue | Method | void CoerceValue(System.Windows.DependencyProperty dp) |
System.Windows.Window | DragMove | Method | void DragMove() |
System.Windows.Window | EndInit | Method | void EndInit(), void ISupportInitialize.EndInit() |
System.Windows.Window | Equals | Method | bool Equals(System.Object obj) |
System.Windows.Window | FindCommonVisualAncestor | Method | System.Windows.DependencyObject FindCommonVisualAncestor(System.Windows.DependencyObject otherVisual) |
System.Windows.Window | FindName | Method | System.Object FindName(string name) |
System.Windows.Window | FindResource | Method | System.Object FindResource(System.Object resourceKey) |
System.Windows.Window | Focus | Method | bool Focus(), bool IInputElement.Focus() |
System.Windows.Window | GetAnimationBaseValue | Method | System.Object GetAnimationBaseValue(System.Windows.DependencyProperty dp), System.Object IAnimatable.GetAnimationBaseValue(System.Windows.DependencyProperty dp) |
System.Windows.Window | GetBindingExpression | Method | System.Windows.Data.BindingExpression GetBindingExpression(System.Windows.DependencyProperty dp) |
System.Windows.Window | GetHashCode | Method | int GetHashCode() |
System.Windows.Window | GetLocalValueEnumerator | Method | System.Windows.LocalValueEnumerator GetLocalValueEnumerator() |
System.Windows.Window | GetType | Method | type GetType() |
System.Windows.Window | GetValue | Method | System.Object GetValue(System.Windows.DependencyProperty dp) |
System.Windows.Window | Hide | Method | void Hide() |
System.Windows.Window | InputHitTest | Method | System.Windows.IInputElement InputHitTest(System.Windows.Point point) |
System.Windows.Window | InvalidateArrange | Method | void InvalidateArrange() |
System.Windows.Window | InvalidateMeasure | Method | void InvalidateMeasure() |
System.Windows.Window | InvalidateProperty | Method | void InvalidateProperty(System.Windows.DependencyProperty dp) |
System.Windows.Window | InvalidateVisual | Method | void InvalidateVisual() |
System.Windows.Window | IsAmbientPropertyAvailable | Method | bool IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) |
System.Windows.Window | IsAncestorOf | Method | bool IsAncestorOf(System.Windows.DependencyObject descendant) |
System.Windows.Window | IsDescendantOf | Method | bool IsDescendantOf(System.Windows.DependencyObject ancestor) |
System.Windows.Window | Measure | Method | void Measure(System.Windows.Size availableSize) |
System.Windows.Window | MoveFocus | Method | bool MoveFocus(System.Windows.Input.TraversalRequest request) |
System.Windows.Window | OnApplyTemplate | Method | void OnApplyTemplate() |
System.Windows.Window | PointFromScreen | Method | System.Windows.Point PointFromScreen(System.Windows.Point point) |
System.Windows.Window | PointToScreen | Method | System.Windows.Point PointToScreen(System.Windows.Point point) |
System.Windows.Window | PredictFocus | Method | System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) |
System.Windows.Window | RaiseEvent | Method | void RaiseEvent(System.Windows.RoutedEventArgs e), void IInputElement.RaiseEvent(System.Windows.RoutedEventArgs e) |
System.Windows.Window | ReadLocalValue | Method | System.Object ReadLocalValue(System.Windows.DependencyProperty dp) |
System.Windows.Window | RegisterName | Method | void RegisterName(string name, System.Object scopedElement) |
System.Windows.Window | ReleaseAllTouchCaptures | Method | void ReleaseAllTouchCaptures() |
System.Windows.Window | ReleaseMouseCapture | Method | void ReleaseMouseCapture(), void IInputElement.ReleaseMouseCapture() |
System.Windows.Window | ReleaseStylusCapture | Method | void ReleaseStylusCapture(), void IInputElement.ReleaseStylusCapture() |
System.Windows.Window | ReleaseTouchCapture | Method | bool ReleaseTouchCapture(System.Windows.Input.TouchDevice touchDevice) |
System.Windows.Window | RemoveHandler | Method | void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler), void IInputElement.RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) |
System.Windows.Window | SetBinding | Method | System.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.Window | SetCurrentValue | Method | void SetCurrentValue(System.Windows.DependencyProperty dp, System.Object value) |
System.Windows.Window | SetResourceReference | Method | void SetResourceReference(System.Windows.DependencyProperty dp, System.Object name) |
System.Windows.Window | SetValue | Method | void SetValue(System.Windows.DependencyProperty dp, System.Object value), void SetValue(System.Windows.DependencyPropertyKey key, System.Object value) |
System.Windows.Window | ShouldSerializeCommandBindings | Method | bool ShouldSerializeCommandBindings() |
System.Windows.Window | ShouldSerializeContent | Method | bool ShouldSerializeContent() |
System.Windows.Window | ShouldSerializeInputBindings | Method | bool ShouldSerializeInputBindings() |
System.Windows.Window | ShouldSerializeResources | Method | bool ShouldSerializeResources() |
System.Windows.Window | ShouldSerializeStyle | Method | bool ShouldSerializeStyle() |
System.Windows.Window | ShouldSerializeTriggers | Method | bool ShouldSerializeTriggers() |
System.Windows.Window | Show | Method | void Show() |
System.Windows.Window | ShowDialog | Method | System.Nullable[bool] ShowDialog() |
System.Windows.Window | ToString | Method | string ToString() |
System.Windows.Window | TransformToAncestor | Method | System.Windows.Media.GeneralTransform TransformToAncestor(System.Windows.Media.Visual ancestor), System.Windows.Media.Media3D.GeneralTransform2DTo3D TransformToAncestor(System.Windows.Media.Media3D.Visual3D ancestor) |
System.Windows.Window | TransformToDescendant | Method | System.Windows.Media.GeneralTransform TransformToDescendant(System.Windows.Media.Visual descendant) |
System.Windows.Window | TransformToVisual | Method | System.Windows.Media.GeneralTransform TransformToVisual(System.Windows.Media.Visual visual) |
System.Windows.Window | TranslatePoint | Method | System.Windows.Point TranslatePoint(System.Windows.Point point, System.Windows.UIElement relativeTo) |
System.Windows.Window | TryFindResource | Method | System.Object TryFindResource(System.Object resourceKey) |
System.Windows.Window | UnregisterName | Method | void UnregisterName(string name) |
System.Windows.Window | UpdateDefaultStyle | Method | void UpdateDefaultStyle() |
System.Windows.Window | UpdateLayout | Method | void UpdateLayout() |
System.Windows.Window | VerifyAccess | Method | void VerifyAccess() |
System.Windows.Window | ActualHeight | Property | double ActualHeight {get;} |
System.Windows.Window | ActualWidth | Property | double ActualWidth {get;} |
System.Windows.Window | AllowDrop | Property | bool AllowDrop {get;set;} |
System.Windows.Window | AllowsTransparency | Property | bool AllowsTransparency {get;set;} |
System.Windows.Window | AreAnyTouchesCaptured | Property | bool AreAnyTouchesCaptured {get;} |
System.Windows.Window | AreAnyTouchesCapturedWithin | Property | bool AreAnyTouchesCapturedWithin {get;} |
System.Windows.Window | AreAnyTouchesDirectlyOver | Property | bool AreAnyTouchesDirectlyOver {get;} |
System.Windows.Window | AreAnyTouchesOver | Property | bool AreAnyTouchesOver {get;} |
System.Windows.Window | Background | Property | System.Windows.Media.Brush Background {get;set;} |
System.Windows.Window | BindingGroup | Property | System.Windows.Data.BindingGroup BindingGroup {get;set;} |
System.Windows.Window | BitmapEffect | Property | System.Windows.Media.Effects.BitmapEffect BitmapEffect {get;set;} |
System.Windows.Window | BitmapEffectInput | Property | System.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput {get;set;} |
System.Windows.Window | BorderBrush | Property | System.Windows.Media.Brush BorderBrush {get;set;} |
System.Windows.Window | BorderThickness | Property | System.Windows.Thickness BorderThickness {get;set;} |
System.Windows.Window | CacheMode | Property | System.Windows.Media.CacheMode CacheMode {get;set;} |
System.Windows.Window | Clip | Property | System.Windows.Media.Geometry Clip {get;set;} |
System.Windows.Window | ClipToBounds | Property | bool ClipToBounds {get;set;} |
System.Windows.Window | CommandBindings | Property | System.Windows.Input.CommandBindingCollection CommandBindings {get;} |
System.Windows.Window | Content | Property | System.Object Content {get;set;} |
System.Windows.Window | ContentStringFormat | Property | string ContentStringFormat {get;set;} |
System.Windows.Window | ContentTemplate | Property | System.Windows.DataTemplate ContentTemplate {get;set;} |
System.Windows.Window | ContentTemplateSelector | Property | System.Windows.Controls.DataTemplateSelector ContentTemplateSelector {get;set;} |
System.Windows.Window | ContextMenu | Property | System.Windows.Controls.ContextMenu ContextMenu {get;set;} |
System.Windows.Window | Cursor | Property | System.Windows.Input.Cursor Cursor {get;set;} |
System.Windows.Window | DataContext | Property | System.Object DataContext {get;set;} |
System.Windows.Window | DependencyObjectType | Property | System.Windows.DependencyObjectType DependencyObjectType {get;} |
System.Windows.Window | DesiredSize | Property | System.Windows.Size DesiredSize {get;} |
System.Windows.Window | DialogResult | Property | System.Nullable[bool] DialogResult {get;set;} |
System.Windows.Window | Dispatcher | Property | System.Windows.Threading.Dispatcher Dispatcher {get;} |
System.Windows.Window | Effect | Property | System.Windows.Media.Effects.Effect Effect {get;set;} |
System.Windows.Window | FlowDirection | Property | System.Windows.FlowDirection FlowDirection {get;set;} |
System.Windows.Window | Focusable | Property | bool Focusable {get;set;} |
System.Windows.Window | FocusVisualStyle | Property | System.Windows.Style FocusVisualStyle {get;set;} |
System.Windows.Window | FontFamily | Property | System.Windows.Media.FontFamily FontFamily {get;set;} |
System.Windows.Window | FontSize | Property | double FontSize {get;set;} |
System.Windows.Window | FontStretch | Property | System.Windows.FontStretch FontStretch {get;set;} |
System.Windows.Window | FontStyle | Property | System.Windows.FontStyle FontStyle {get;set;} |
System.Windows.Window | FontWeight | Property | System.Windows.FontWeight FontWeight {get;set;} |
System.Windows.Window | ForceCursor | Property | bool ForceCursor {get;set;} |
System.Windows.Window | Foreground | Property | System.Windows.Media.Brush Foreground {get;set;} |
System.Windows.Window | HasAnimatedProperties | Property | bool HasAnimatedProperties {get;} |
System.Windows.Window | HasContent | Property | bool HasContent {get;} |
System.Windows.Window | Height | Property | double Height {get;set;} |
System.Windows.Window | HorizontalAlignment | Property | System.Windows.HorizontalAlignment HorizontalAlignment {get;set;} |
System.Windows.Window | HorizontalContentAlignment | Property | System.Windows.HorizontalAlignment HorizontalContentAlignment {get;set;} |
System.Windows.Window | Icon | Property | System.Windows.Media.ImageSource Icon {get;set;} |
System.Windows.Window | InputBindings | Property | System.Windows.Input.InputBindingCollection InputBindings {get;} |
System.Windows.Window | InputScope | Property | System.Windows.Input.InputScope InputScope {get;set;} |
System.Windows.Window | IsActive | Property | bool IsActive {get;} |
System.Windows.Window | IsArrangeValid | Property | bool IsArrangeValid {get;} |
System.Windows.Window | IsEnabled | Property | bool IsEnabled {get;set;} |
System.Windows.Window | IsFocused | Property | bool IsFocused {get;} |
System.Windows.Window | IsHitTestVisible | Property | bool IsHitTestVisible {get;set;} |
System.Windows.Window | IsInitialized | Property | bool IsInitialized {get;} |
System.Windows.Window | IsInputMethodEnabled | Property | bool IsInputMethodEnabled {get;} |
System.Windows.Window | IsKeyboardFocused | Property | bool IsKeyboardFocused {get;} |
System.Windows.Window | IsKeyboardFocusWithin | Property | bool IsKeyboardFocusWithin {get;} |
System.Windows.Window | IsLoaded | Property | bool IsLoaded {get;} |
System.Windows.Window | IsManipulationEnabled | Property | bool IsManipulationEnabled {get;set;} |
System.Windows.Window | IsMeasureValid | Property | bool IsMeasureValid {get;} |
System.Windows.Window | IsMouseCaptured | Property | bool IsMouseCaptured {get;} |
System.Windows.Window | IsMouseCaptureWithin | Property | bool IsMouseCaptureWithin {get;} |
System.Windows.Window | IsMouseDirectlyOver | Property | bool IsMouseDirectlyOver {get;} |
System.Windows.Window | IsMouseOver | Property | bool IsMouseOver {get;} |
System.Windows.Window | IsSealed | Property | bool IsSealed {get;} |
System.Windows.Window | IsStylusCaptured | Property | bool IsStylusCaptured {get;} |
System.Windows.Window | IsStylusCaptureWithin | Property | bool IsStylusCaptureWithin {get;} |
System.Windows.Window | IsStylusDirectlyOver | Property | bool IsStylusDirectlyOver {get;} |
System.Windows.Window | IsStylusOver | Property | bool IsStylusOver {get;} |
System.Windows.Window | IsTabStop | Property | bool IsTabStop {get;set;} |
System.Windows.Window | IsVisible | Property | bool IsVisible {get;} |
System.Windows.Window | Language | Property | System.Windows.Markup.XmlLanguage Language {get;set;} |
System.Windows.Window | LayoutTransform | Property | System.Windows.Media.Transform LayoutTransform {get;set;} |
System.Windows.Window | Left | Property | double Left {get;set;} |
System.Windows.Window | Margin | Property | System.Windows.Thickness Margin {get;set;} |
System.Windows.Window | MaxHeight | Property | double MaxHeight {get;set;} |
System.Windows.Window | MaxWidth | Property | double MaxWidth {get;set;} |
System.Windows.Window | MinHeight | Property | double MinHeight {get;set;} |
System.Windows.Window | MinWidth | Property | double MinWidth {get;set;} |
System.Windows.Window | Name | Property | string Name {get;set;} |
System.Windows.Window | Opacity | Property | double Opacity {get;set;} |
System.Windows.Window | OpacityMask | Property | System.Windows.Media.Brush OpacityMask {get;set;} |
System.Windows.Window | OverridesDefaultStyle | Property | bool OverridesDefaultStyle {get;set;} |
System.Windows.Window | OwnedWindows | Property | System.Windows.WindowCollection OwnedWindows {get;} |
System.Windows.Window | Owner | Property | System.Windows.Window Owner {get;set;} |
System.Windows.Window | Padding | Property | System.Windows.Thickness Padding {get;set;} |
System.Windows.Window | Parent | Property | System.Windows.DependencyObject Parent {get;} |
System.Windows.Window | PersistId | Property | int PersistId {get;} |
System.Windows.Window | RenderSize | Property | System.Windows.Size RenderSize {get;set;} |
System.Windows.Window | RenderTransform | Property | System.Windows.Media.Transform RenderTransform {get;set;} |
System.Windows.Window | RenderTransformOrigin | Property | System.Windows.Point RenderTransformOrigin {get;set;} |
System.Windows.Window | ResizeMode | Property | System.Windows.ResizeMode ResizeMode {get;set;} |
System.Windows.Window | Resources | Property | System.Windows.ResourceDictionary Resources {get;set;} |
System.Windows.Window | RestoreBounds | Property | System.Windows.Rect RestoreBounds {get;} |
System.Windows.Window | ShowActivated | Property | bool ShowActivated {get;set;} |
System.Windows.Window | ShowInTaskbar | Property | bool ShowInTaskbar {get;set;} |
System.Windows.Window | SizeToContent | Property | System.Windows.SizeToContent SizeToContent {get;set;} |
System.Windows.Window | SnapsToDevicePixels | Property | bool SnapsToDevicePixels {get;set;} |
System.Windows.Window | Style | Property | System.Windows.Style Style {get;set;} |
System.Windows.Window | TabIndex | Property | int TabIndex {get;set;} |
System.Windows.Window | Tag | Property | System.Object Tag {get;set;} |
System.Windows.Window | TaskbarItemInfo | Property | System.Windows.Shell.TaskbarItemInfo TaskbarItemInfo {get;set;} |
System.Windows.Window | Template | Property | System.Windows.Controls.ControlTemplate Template {get;set;} |
System.Windows.Window | TemplatedParent | Property | System.Windows.DependencyObject TemplatedParent {get;} |
System.Windows.Window | Title | Property | string Title {get;set;} |
System.Windows.Window | ToolTip | Property | System.Object ToolTip {get;set;} |
System.Windows.Window | Top | Property | double Top {get;set;} |
System.Windows.Window | Topmost | Property | bool Topmost {get;set;} |
System.Windows.Window | TouchesCaptured | Property | System.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesCaptured {get;} |
System.Windows.Window | TouchesCapturedWithin | Property | System.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesCapturedWithin {get;} |
System.Windows.Window | TouchesDirectlyOver | Property | System.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesDirectlyOver {get;} |
System.Windows.Window | TouchesOver | Property | System.Collections.Generic.IEnumerable[System.Windows.Input.TouchDevice] TouchesOver {get;} |
System.Windows.Window | Triggers | Property | System.Windows.TriggerCollection Triggers {get;} |
System.Windows.Window | Uid | Property | string Uid {get;set;} |
System.Windows.Window | UseLayoutRounding | Property | bool UseLayoutRounding {get;set;} |
System.Windows.Window | VerticalAlignment | Property | System.Windows.VerticalAlignment VerticalAlignment {get;set;} |
System.Windows.Window | VerticalContentAlignment | Property | System.Windows.VerticalAlignment VerticalContentAlignment {get;set;} |
System.Windows.Window | Visibility | Property | System.Windows.Visibility Visibility {get;set;} |
System.Windows.Window | Width | Property | double Width {get;set;} |
System.Windows.Window | WindowStartupLocation | Property | System.Windows.WindowStartupLocation WindowStartupLocation {get;set;} |
System.Windows.Window | WindowState | Property | System.Windows.WindowState WindowState {get;set;} |
System.Windows.Window | WindowStyle | Property | System.Windows.WindowStyle WindowStyle {get;set;} |
コメント