From 6c30c0f9f485fe7bca5e8c5425a055b8a29b985d Mon Sep 17 00:00:00 2001 From: DianeXceed Date: Tue, 20 Jun 2017 10:19:36 -0400 Subject: [PATCH] Updated StackPanel (markdown) --- StackPanel.md | 72 ++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 35 deletions(-) diff --git a/StackPanel.md b/StackPanel.md index 7d073d3..0d045fd 100644 --- a/StackPanel.md +++ b/StackPanel.md @@ -5,41 +5,43 @@ Derives from AnimationPanel Exactly like WPF's native StackPanel, except this panel can animate its children and be used inside SwitchPanel. -![](StackPanel_stackpanel.jpg) +[[StackPanel_stackpanel.jpg]] -## Properties -|| Property || Description -| * | All the Properties from [Canvas](Canvas) Panel -| CanHorizontallyScroll | Gets or sets if the horizontal scrolling is enabled. -| CanVerticallyScroll | Gets or sets if the vertical scrolling is enabled. -| ExtendHeight | Gets the Height extended for the panel. -| ExtendWidth | Gets the Width extended for the panel. -| HorizontalOffset | Gets the horizontal offset for the panel. -| Orientation | Gets or sets the Orientation property. This dependency property indicates the direction in which children are stacked (vertically or horizontally). -| ScrollOwner | Gets or sets the ScrollViewer. -| VerticalOffset | Gets the Vertical offset. -| ViewportHeight | Gets the height of the viewport. -| ViewportWidth | Gets the width of the viewport. +### Properties +| Property | Description | +| --- | --- | +| * | All the Properties from [[Canvas]] Panel | +| CanHorizontallyScroll | Gets or sets if the horizontal scrolling is enabled. | +| CanVerticallyScroll | Gets or sets if the vertical scrolling is enabled. | +| ExtendHeight | Gets the Height extended for the panel. | +| ExtendWidth | Gets the Width extended for the panel. | +| HorizontalOffset | Gets the horizontal offset for the panel. | +| Orientation | Gets or sets the Orientation property. This dependency property indicates the direction in which children are stacked (vertically or horizontally). | +| ScrollOwner | Gets or sets the ScrollViewer. | +| VerticalOffset | Gets the Vertical offset. | +| ViewportHeight | Gets the height of the viewport. | +| ViewportWidth | Gets the width of the viewport. | -## Events -|| Event || Description -| * | All the Events from [Canvas](Canvas) Panel. +### Events +| Event | Description | +| --- | --- | +| * | All the Events from [[Canvas]] Panel. | -## Methods -|| Method || Description -| LineDown() | Sets Vertical offset down by one. -| LineLeft() | Sets Horizontal offset left by one. -| LineUp() | Sets Vertical offset up by one. -| LineRight() | Sets Horizontal offset right by one. -| MakeVisible( Visual visual, Rect rectangle ) | show a children of the panel. -| MouseWheelDown() | Sets Vertical offset down by SystemParameters.WheelScrollLines. -| MouseWheelLeft() | Sets Horizontal offset left by SystemParameters.WheelScrollLines. -| MouseWheelUp() | Sets Vertical offset up by SystemParameters.WheelScrollLines. -| MouseWheelRight() | Sets Horizontal offset right by SystemParameters.WheelScrollLines. -| PageDown() | Sets Vertical offset down by page. -| PageLeft() | Sets Horizontal offset left by page. -| PageUp() | Sets Vertical offset up by page. -| PageRight() | Sets Horizontal offset right by page. -| SetHorizontalOffset( double offset ) | Sets the Horizontal offset. -| SetVerticalOffset( double offset ) | Sets the Vertical offset. ---- \ No newline at end of file +### Methods +| Method | Description | +| --- | --- | +| LineDown | Sets Vertical offset down by one. | +| LineLeft | Sets Horizontal offset left by one. | +| LineUp | Sets Vertical offset up by one. | +| LineRight | Sets Horizontal offset right by one. | +| MakeVisible | show a children of the panel. | +| MouseWheelDown | Sets Vertical offset down by SystemParameters.WheelScrollLines. | +| MouseWheelLeft | Sets Horizontal offset left by SystemParameters.WheelScrollLines. | +| MouseWheelUp | Sets Vertical offset up by SystemParameters.WheelScrollLines. | +| MouseWheelRight | Sets Horizontal offset right by SystemParameters.WheelScrollLines. | +| PageDown | Sets Vertical offset down by page. | +| PageLeft | Sets Horizontal offset left by page. | +| PageUp | Sets Vertical offset up by page. | +| PageRight | Sets Horizontal offset right by page. | +| SetHorizontalOffset | Sets the Horizontal offset. | +| SetVerticalOffset | Sets the Vertical offset. |