Skip to content

Commit

Permalink
Add TextAlign property for NumericSlider control.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 19, 2014
1 parent 600181a commit 99fa180
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ public bool Hexadecimal
set { numSpinner.Hexadecimal = value; }
}

public HorizontalAlignment TextAlign
{
get { return numSpinner.TextAlign; }
set { numSpinner.TextAlign = value; }
}

public int DecimalPlaces
{
get { return numSpinner.DecimalPlaces; }
Expand Down

0 comments on commit 99fa180

Please sign in to comment.