This is the official home for UWP XAML Behaviors on GitHub.
Перейти к файлу
Sergio Pedri 60b211fb40 Set 'ContinuousIntegrationBuild' in more steps 2024-09-18 11:25:59 +02:00
.github/workflows Remove the native build GitHub actions 2024-09-10 14:35:24 -04:00
NuGet_Documentation Update README.Managed.md 2017-10-17 08:06:08 -07:00
assets/packaging Removing documentation assets from repo 2015-11-19 13:24:14 -08:00
azure-pipelines Set 'ContinuousIntegrationBuild' in more steps 2024-09-18 11:25:59 +02:00
key Fix issue with incorrect public key for unit test projects. 2020-02-24 12:34:22 -08:00
samples/CS Retire the C++ UWP API 2024-09-10 14:26:48 -04:00
scripts Fix UWP NuGet packing 2024-09-16 18:39:47 +02:00
src/BehaviorsSDKManaged Set 'EmbedUntrackedSources' to true 2024-09-17 21:22:26 +02:00
tests Cleaned up file structure. 2015-07-23 11:17:48 -07:00
.gitattributes Pushing new version of the sample project. 2015-09-09 05:21:39 -07:00
.gitignore Retire the C++ UWP API 2024-09-10 14:26:48 -04:00
LICENSE Initial commit 2015-07-20 11:03:14 -07:00
README.md Fix UWP NuGet packing 2024-09-16 18:39:47 +02:00
SECURITY.md Adding Microsoft SECURITY.MD (#231) 2022-09-26 08:41:44 -07:00

README.md

XAML Behaviors

XAML Behaviors is an easy-to-use means of adding common and reusable interactivity to your Windows UWP applications with minimal code. It is available for managed applications only. Use of XAML Behaviors is governed by the MIT License

Build Status

Platform Status
Managed Build Managed

Getting Started

Where to get it

Resources

More Info

Code Example

For an example of using Behaviors in an application, here is a snippet of XAML:

<Button xmlns:Core="using:Microsoft.Xaml.Interactions.Core" xmlns:Interactivity="using:Microsoft.Xaml.Interactivity">
    <Interactivity:Interaction.Behaviors>
        <Core:EventTriggerBehavior EventName="Click">
            <Core:ChangePropertyAction PropertyName="Background">
                <Core:ChangePropertyAction.Value>
                    <SolidColorBrush Color="Red"/>
                </Core:ChangePropertyAction.Value>
            </Core:ChangePropertyAction>
        </Core:EventTriggerBehavior>
    </Interactivity:Interaction.Behaviors>
</Button>

Using Behaviors SDK

The documentation explains how to install Visual Studio, add the XAML Behaviors NuGet package to your project, and get started using the API.

Building Behaviors from Source

What You Need

Clone the Repository

Build and Create Managed XAML Behaviors NuGet

  • Open the "BehaviorsSDKManaged.sln" solution in Visual Studio
  • Change Build Configuration to Release
  • Build [Ctrl + B]
  • Ensure that nuget.exe is available in PATH
  • Run msbuild /t:pack src\BehaviorsSDKManaged\Microsoft.Xaml.Interactions.Design\Microsoft.Xaml.Interactions.Design.csproj
    • (Optional) Add /p:TimestampPackage=true to include the timestamp in the NuGet package version

For WinUI:

  • Run msbuild /t:Pack src\BehaviorsSDKManaged\Microsoft.Xaml.Interactivity.WinUI\Microsoft.Xaml.Interactivity.WinUI.csproj
    • (Optional) Add /p:TimestampPackage=true to include the timestamp in the NuGet package version