VOOZH about

URL: https://www.nuget.org/packages/WpfExtensions.Xaml/

⇱ NuGet Gallery | WpfExtensions.Xaml 1.2.0




WpfExtensions.Xaml 1.2.0

dotnet add package WpfExtensions.Xaml --version 1.2.0
 
 
NuGet\Install-Package WpfExtensions.Xaml -Version 1.2.0
 
 
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="1.2.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WpfExtensions.Xaml" Version="1.2.0" />
 
Directory.Packages.props
<PackageReference Include="WpfExtensions.Xaml" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WpfExtensions.Xaml --version 1.2.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: WpfExtensions.Xaml, 1.2.0"
 
 
#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.
#:package WpfExtensions.Xaml@1.2.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WpfExtensions.Xaml&version=1.2.0
 
Install as a Cake Addin
#tool nuget:?package=WpfExtensions.Xaml&version=1.2.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

WpfExtensions.Xaml.Markup

0. *New CommandExtension

  • View (XAML):
<Element Command={markup:Command Execute} />
<Element Command={markup:Command ExecuteWithArgumentAsync, CanExecute}
 CommandParameter={Binding Argument} />
  • View Model (*.cs):
class ViewModel
{
 public void Execute() {}

 public void ExecuteWithArgument(string arg) {}

 // The `Execute` method supports async, and its default `Can Execute` method will disable the command when it is busy.

 public Task ExecuteAsync() => Task.Completed;

 public Task ExecuteWithArgumentAsync(string arg) => Task.Completed;

 // The `Can Execute` method does not support async.

 public bool CanExecute() => true;

 public bool CanExecuteWithArgument(string arg) => true;
}

1. ComposeExtension

Combine multiple Converters into one pipeline.

<TextBlock Visibility="{Binding DescriptionText, Converter={markup:Compose
 {StaticResource IsNullOrEmptyOperator},
 {StaticResource NotConverter},
 {StaticResource BooleanToVisibilityConverter}}}"
 Text="{Binding DescriptionText}" />

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>
 <views:LoadingView />
 </markup:If.True>
 <markup:If.False>
 <views:LoadedView />
 </markup:If.False>
 </markup:If>
</UserControl>

3. SwitchExtension

Using the Switch expression in XAML.

<Image Source="{markup:Switch {Binding FileType},
 {Case {x:Static res:FileType.Music}, {StaticResource MusicIcon}},
 {Case {x:Static res:FileType.Video}, {StaticResource VideoIcon}},
 {Case {x:Static res:FileType.Picture}, {StaticResource PictureIcon}},
 ...
 {Case {StaticResource UnknownFileIcon}}}" />
<UserControl>
 <Switch To="{Binding SelectedViewName}">
 <Case Label="View1">
 <views:View1 />
 </Case>
 <Case Label="{x:Static res:Views.View2}">
 <views:View2 />
 </Case>
 <Case>
 <views:View404 />
 </Case>
 </Switch>
</UserControl>

4. I18nExtension

Dynamically switch the culture resource without restarting the app.

<TextBlock Text="{markup:I18n {x:Static languages:UiStrings.MainWindow_Title}}" />
<TextBlock Text="{markup:I18nString {x:Static languages:UiStrings.SayHello}, {Binding Username}}" />
<TextBlock Text="{markup:I18nString {x:Static languages:UiStrings.StringFormat},
 {Binding Arg0},
 {Binding Arg1},
 ...,
 {Binding Arg15}}" />

5. StylesExtension (In Progress)

<Button Style="{markup:Styles {StaticResource FlatButtonStyle},
 {StaticResource AnimationStyle},
 ...}" />
Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp3.0 netcoreapp3.0 is compatible.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Framework net45 net45 is compatible.  net451 net451 was computed.  net452 net452 was computed.  net46 net46 was computed.  net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on WpfExtensions.Xaml:

Package Downloads
Rays.WPF

仅组织内部使用。提供与WPF相关的核心库。

Rays.Plugins.WPF

仅组织内部使用。为桌面软件(WPF)实现WPF界面插件管理机制的基础库。

Feather.Controls

Package Description

Mortal.Mis.Core

WPF框架核心类库

Rays.PicoPlugins.WPF

仅组织内部使用。为桌面软件(WPF)实现WPF界面插件管理机制的基础库。

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
Version Downloads Last Updated
1.2.0 17,349 3/2/2021
1.1.0 931 10/25/2020
1.0.1 1,885 7/24/2019
1.0.0 850 6/10/2019
0.0.7 865 3/15/2019