WpfExtensions.Xaml
0.0.7
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 WpfExtensions.Xaml --version 0.0.7
NuGet\Install-Package WpfExtensions.Xaml -Version 0.0.7
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="WpfExtensions.Xaml" Version="0.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WpfExtensions.Xaml --version 0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: WpfExtensions.Xaml, 0.0.7"
#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 WpfExtensions.Xaml as a Cake Addin #addin nuget:?package=WpfExtensions.Xaml&version=0.0.7 // Install WpfExtensions.Xaml as a Cake Tool #tool nuget:?package=WpfExtensions.Xaml&version=0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
WpfExtensions.Xaml
1. ComposeExtension
Combine multiple Converters into one pipeline.
<Button Visibility="{Binding SampleCollection, Converter={markup:Compose
{StaticResource AnyConverter},
{StaticResource NotConverter},
{StaticResource BooleanToVisibilityConverter}}}" />
2. IfExtension
Using the Conditional expression
in XAML.
<Button Command="{markup:If
{Binding BoolProperty},
{Binding OkCommand},
{Binding CancelCommand}}" />
<UserControl>
<markup:If Condition="{Binding IsLoading}">
<markup:If.True>
<LoadingView />
</markup:If.True>
<markup:If.False>
<LoadedView />
</markup:If.False>
</markup:If>
</UserControl>
3. I18nExtension
/I18nStringExtension
Dynamically switch languages without restarting the app.
<TextBlock Text="{markup:I18n {x:Static language:UiStrings.MainWindow_Title}}" />
<TextBlock Text="{markup:I18nString {x:Static language:UiStrings.MainWindow_Title}, {Binding Arg0String}, {Binding Arg1String}}" />
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- System.ValueTuple (>= 4.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WpfExtensions.Xaml:
Package | Downloads |
---|---|
Feather.Controls
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on WpfExtensions.Xaml:
Repository | Stars |
---|---|
lay295/TwitchDownloader
Twitch VOD/Clip Downloader - Chat Download/Render/Replay
|