EleCho.WpfSuite
0.1.6
Prefix Reserved
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package EleCho.WpfSuite --version 0.1.6
NuGet\Install-Package EleCho.WpfSuite -Version 0.1.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EleCho.WpfSuite" Version="0.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EleCho.WpfSuite --version 0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EleCho.WpfSuite, 0.1.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EleCho.WpfSuite as a Cake Addin #addin nuget:?package=EleCho.WpfSuite&version=0.1.6 // Install EleCho.WpfSuite as a Cake Tool #tool nuget:?package=EleCho.WpfSuite&version=0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EleCho.WpfSuite
WPF layout panels, controls, value converters and utilities
Usage
Add XML namespace to your XAML file:
<Window x:Class="WpfTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfTest"
xmlns:ws="https://github.com/OrgEleCho/EleCho.WpfSuite"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
...
</Window>
Enjoy!
<Window x:Class="WpfTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfTest"
xmlns:ws="https://github.com/OrgEleCho/EleCho.WpfSuite"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<ws:ScrollViewer Margin="12"
ScrollWithWheelDelta="True">
<ws:StackPanel Spacing="8">
<ws:TextBox Width="200"
Placeholder="This is a text box with placeholder"/>
<ws:Image Source="/Assets/TestAvatar.jpg"
CornerRadius="10"/>
<StackPanel>
<TextBlock Text="WrapPanel with spacing"/>
<ItemsControl ItemsSource="{Binding TestItems}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<ws:WrapPanel HorizontalSpacing="8"
VerticalSpacing="8"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</StackPanel>
</ws:StackPanel>
</ws:ScrollViewer>
</Window>
Features
Layout panels:
- StackPanel: Origin stack panel with
Spacing
property - WrapPanel: Origin wrap panel with
HorizontalSpacing
andVerticalSpacing
property - FlexPanel: Flex layout implementation with
HorizontalSpacing
andVerticalSpacing
property
Controls:
- Image: Simple image control with
CornerRadius
property - SlicedImage: Simple image control for drawing '9SliceSprite'
- Button: Origin button with
CornerRadius
property - ToggleButton: Origin toggle button with
CornerRadius
property - ScrollViewer: Origin scroll viewer with 'MouseWheelDelta' based scrolling and scroll smoothing feature
- ConditionalControl: Display the control based on the condition
- TextBox: Origin text box with
Placeholder
andCornerRadius
property - ListBox: Origin list box with
CornerRadius
property - ListBoxItem: Origin list box item with
CornerRadius
property - TransitioningContentControl: ContentControl that allows you to set transitions
- Frame: Frame that allows you to set transitions
- ProgressBar: Origin progress bar with
CornerRadius
property - Border: Origin border with
ContentClip
property for binding
Transitions:
- SlideTransition: Moves the old page out of view, and the new page into view
- FadeTransition: Fades out the current page and fades in the new page by animating the opacity
- SlideFadeTransition: SlideTransition and FadeTransition
- ScaleTransition: Scale the old page to smaller and fade out, and scale the new page from a larger zoom to 1 and fade in
Value converters:
- AddNumberConverter: Mathematical calculations, addition
- SubstractNumberConverter: 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
- EqualConverter: Check if the value equals converter parameter
- NotEqualConverter: Check if the value not equal to converter parameter
- ValueIsNullConverter: Determines whether the object is empty
- ValueIsNotNullConverter: Determines whether the object is not empty
- InvertBooleanConverter: Inverts the boolean value
- ValueConverterGroup: Converts the value using the specified multiple converters
- StringIsNullOrEmptyConverter: Check if string is null or empty, returns a boolean value
- StringIsNotNullOrEmptyConverter: Check if string is not null or empty, returns a boolean value
- StringIsNullOrWhiteSpaceConverter: Check if string is null or white space, returns a boolean value
- StringIsNotNullOrWhiteSpaceConverter: Check if string is not null or white space, returns a boolean value
- CollectionIsNullOrEmptyConverter: Check if collection is null or empty, returns a boolean value
- CollectionIsNotNullOrEmptyConverter: Check if collection is not null or empty, returns a boolean value
- StringToImageSourceConverter: Convert any valid URI string to image source
- NumberToThicknessConverter: Convert number to uniform thickness
- NumberToCornerRadiusConverter: Convert number to uniform corner radius
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. net8.0-windows7.0 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 is compatible. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
net6.0-windows7.0
- No dependencies.
-
net8.0-windows7.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EleCho.WpfSuite:
Package | Downloads |
---|---|
EleCho.WpfSuite.FluentDesign
FluentDesign for WPF Suite |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on EleCho.WpfSuite:
Repository | Stars |
---|---|
SlimeNull/ScreenBroadcaster
Screen broadcast and remote control tool based on FFmpeg. 基于 FFmpeg 的屏幕广播与远程操控工具.
|
Version | Downloads | Last updated |
---|---|---|
0.9.1.2 | 82 | 10/25/2024 |
0.9.1.1 | 65 | 10/25/2024 |
0.9.1 | 166 | 9/28/2024 |
0.9.0 | 82 | 9/26/2024 |
0.8.1 | 245 | 9/5/2024 |
0.8.0 | 111 | 8/31/2024 |
0.7.4 | 99 | 8/30/2024 |
0.7.3 | 90 | 8/29/2024 |
0.7.2 | 99 | 8/26/2024 |
0.7.1 | 117 | 8/22/2024 |
0.7.0 | 139 | 8/20/2024 |
0.6.7 | 142 | 8/19/2024 |
0.6.6 | 109 | 8/18/2024 |
0.6.5 | 119 | 8/17/2024 |
0.6.4 | 108 | 8/8/2024 |
0.6.3 | 92 | 8/7/2024 |
0.6.2 | 58 | 8/5/2024 |
0.6.1 | 142 | 7/17/2024 |
0.6.0 | 95 | 7/15/2024 |
0.5.3 | 129 | 7/3/2024 |
0.5.2 | 75 | 7/3/2024 |
0.5.1 | 76 | 7/2/2024 |
0.4.1 | 198 | 6/13/2024 |
0.4.0 | 122 | 6/7/2024 |
0.3.3 | 104 | 5/30/2024 |
0.3.2 | 86 | 5/28/2024 |
0.3.1 | 101 | 5/28/2024 |
0.3.0 | 104 | 5/25/2024 |
0.2.1 | 113 | 4/25/2024 |
0.2.0 | 110 | 4/24/2024 |
0.1.6 | 109 | 4/20/2024 |
0.1.5 | 100 | 4/18/2024 |
0.1.4 | 89 | 4/18/2024 |
0.1.3 | 100 | 4/18/2024 |
0.1.2 | 110 | 4/17/2024 |
0.1.1 | 115 | 4/16/2024 |
0.1.0 | 113 | 4/16/2024 |
0.0.14 | 100 | 4/15/2024 |
0.0.13 | 102 | 4/15/2024 |
0.0.12 | 91 | 4/15/2024 |
0.0.11 | 139 | 4/14/2024 |
0.0.10 | 125 | 4/13/2024 |