TickBar.OnRender(DrawingContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Draws the tick marks for a Slider control.
protected:
override void OnRender(System::Windows::Media::DrawingContext ^ dc);
protected override void OnRender (System.Windows.Media.DrawingContext dc);
override this.OnRender : System.Windows.Media.DrawingContext -> unit
Protected Overrides Sub OnRender (dc As DrawingContext)
Parameters
The DrawingContext that is used to draw the ticks.
Remarks
The values of the Placement property and the IsDirectionReversed property determine where tick marks are drawn in a TickBar.
Primary ticks are displayed for the Minimum and Maximum values, and secondary ticks are displayed for other values. For a horizontal TickBar, the height of the primary ticks is equal to the ActualHeight of the TickBar. For a vertical TickBar, the width of the primary ticks is equal to the ActualWidth of the TickBar. The size of the secondary ticks is 75 percent of the size of the primary ticks.
This method also draws ticks at the beginning and the end of a selection range if the IsSelectionRangeEnabled property is true
and if the SelectionStart and SelectionEnd properties are valid.