Skip to content

Commit

Permalink
发版本
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimeNull committed Apr 25, 2024
1 parent 690522f commit 73ae94b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion EleCho.WpfSuite/EleCho.WpfSuite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RootNamespace>EleCho.WpfSuite</RootNamespace>

<Version>0.2.0</Version>
<Version>0.2.1</Version>

<Authors>EleCho</Authors>
<Copyright>Copyright © 2024 EleCho</Copyright>
Expand Down
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Transitions:
Value converters:

- AddNumberConverter: Mathematical calculations, addition
- SubstractNumberConverter: Mathematical calculations, subtraction
- SubtractNumberConverter: Mathematical calculations, subtraction
- MultiplyNumberConverter: Mathematical calculations, multiplication
- DivideNumberConverter: Mathematical calculations, division
- NumberCompareConverter: Compare between numbers, support `equal`, `not equal`, `greator than`, `greator or equal`, `less than`, `less or equal`
Expand All @@ -116,12 +116,29 @@ Value converters:
- NumberToThicknessConverter: Convert number to uniform thickness
- NumberToCornerRadiusConverter: Convert number to uniform corner radius

Markup extensions:

- String: Represents text as a sequence of UTF-16 code units. (returns System.String)
- Char: Represents a character as a UTF-16 code unit. (returns System.Char)
- Boolean: Represents a Boolean (true or false) value. (returns System.Boolean)
- Byte: Represents an 8-bit unsigned integer. (returns System.Byte)
- Int16: Represents a 16-bit signed integer. (returns System.Int16)
- Int32: Represents a 32-bit signed integer. (returns System.Int32)
- Int64: Represents a 64-bit signed integer. (returns System.Int64)
- Single: Represents a single-precision floating-point number. (returns System.Single)
- Double: Represents a double-precision floating-point number. (returns System.Double)
- Decimal: Represents a decimal floating-point number. (returns System.Decimal)
- HsvColor: Represents a color from HSV color space values (returns System.Windows.Media.Color)

Animations:

- CornerRadiusAnimation: Animates the value of a CornerRadius property between two target values using linear interpolation over a specified Duration.

Utilities:

- BindingProxy: A utility class for binding, commonly used when a collection element has property to be bound to a page DataContext
- ScrollViewerHelper: Helper for set vertical offset and horizontal offset of scroll viewer and scroll content presenter
- ValidateHelper: DependencyProperty validation helper
- ScrollViewerUtils: Utilities for set vertical offset and horizontal offset of scroll viewer and scroll content presenter
- ItemsControlUtils: Utilities for removing item from ItemsControl with transitions
- ColorUtils: Utilities for color calculation
- BooleanValues: Static value of boolean 'true' and 'false'
- ValidationUtils: DependencyProperty validation utilities

0 comments on commit 73ae94b

Please sign in to comment.