DependencyPropertyGenerator 0.7.3
See the version list below for details.
dotnet add package DependencyPropertyGenerator --version 0.7.3
NuGet\Install-Package DependencyPropertyGenerator -Version 0.7.3
<PackageReference Include="DependencyPropertyGenerator" Version="0.7.3"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
<PackageVersion Include="DependencyPropertyGenerator" Version="0.7.3" />
<PackageReference Include="DependencyPropertyGenerator"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add DependencyPropertyGenerator --version 0.7.3
#r "nuget: DependencyPropertyGenerator, 0.7.3"
#:package DependencyPropertyGenerator@0.7.3
#addin nuget:?package=DependencyPropertyGenerator&version=0.7.3
#tool nuget:?package=DependencyPropertyGenerator&version=0.7.3
DependencyPropertyGenerator
Dependency property source generator for WPF/UWP/WinUI/Uno platforms.
Install
Install-Package DependencyPropertyGenerator // Generator
Install-Package DependencyPropertyGenerator.Core // Attributes
Usage
using DependencyPropertyGenerator;
using System.Windows;
using System.Windows.Controls;
namespace H.Generators.IntegrationTests;
[DependencyProperty("IsSpinning", typeof(bool))]
public partial class MainWindow : Window
{
static partial void OnIsSpinningChanged(MainWindow sender, DependencyPropertyChangedEventArgs args)
{
}
}
[AttachedDependencyProperty("SelectedItem", typeof(object), browsableForType: typeof(System.Windows.Controls.TreeView))]
public static partial class TreeViewExtensions
{
static partial void OnSelectedItemChanged(TreeView sender, DependencyPropertyChangedEventArgs args)
{
}
}
will generate:
//HintName: MainWindow_DependencyProperties.generated.cs
#nullable enable
namespace H.Generators.IntegrationTests
{
public partial class MainWindow
{
public static readonly global::System.Windows.DependencyProperty IsSpinningProperty =
global::System.Windows.DependencyProperty.Register(
name: "IsSpinning",
propertyType: typeof(bool),
ownerType: typeof(MainWindow),
typeMetadata: new global::System.Windows.PropertyMetadata(
default(bool),
static (sender, args) => OnIsSpinningChanged((MainWindow)sender, args)));
public bool IsSpinning
{
get => (bool)GetValue(IsSpinningProperty);
set => SetValue(IsSpinningProperty, value);
}
static partial void OnIsSpinningChanged(MainWindow sender, global::System.Windows.DependencyPropertyChangedEventArgs args);
}
}
//HintName: TreeViewExtensions_AttachedDependencyProperties.generated.cs
#nullable enable
namespace H.Generators.IntegrationTests
{
public static partial class TreeViewExtensions
{
public static readonly global::System.Windows.DependencyProperty SelectedItemProperty =
global::System.Windows.DependencyProperty.RegisterAttached(
name: "SelectedItem",
propertyType: typeof(object),
ownerType: typeof(TreeViewExtensions),
defaultMetadata: new global::System.Windows.PropertyMetadata(
typeof(System.Windows.Controls.TreeView),
static (sender, args) => OnSelectedItemChanged((System.Windows.Controls.TreeView)sender, args)));
public static void SetSelectedItem(global::System.Windows.DependencyObject element, object value)
{
element.SetValue(SelectedItemProperty, value);
}
[global::System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.Controls.TreeView))]
public static object GetSelectedItem(global::System.Windows.DependencyObject element)
{
return (object)element.GetValue(SelectedItemProperty);
}
static partial void OnSelectedItemChanged(System.Windows.Controls.TreeView sender, global::System.Windows.DependencyPropertyChangedEventArgs args);
}
}
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (6)
Showing the top 6 popular GitHub repositories that depend on DependencyPropertyGenerator:
Repository | Stars |
---|---|
helix-toolkit/helix-toolkit
Helix Toolkit is a collection of 3D components for .NET.
|
|
GoldenPotato137/PotatoVN
一款Visual Novel管理软件
|
|
JasonWei512/EnergyStarX
🔋 Improve your Windows 11 device's battery life. A WinUI 3 GUI for https://github.com/imbushuo/EnergyStar.
|
|
IviriusCommunity/Rebound
WinUI rewrite project of Windows 11 system apps.
|
|
HavenDV/H.NotifyIcon
TrayIcon for WPF/WinUI/Uno/MAUI
|
|
NeilMacMullen/kusto-loco
C# KQL query engine with flexible I/O layers and visualization
|
Version | Downloads | Last Updated |
---|---|---|
1.5.0 | 10,985 | 1/12/2025 |
1.5.0-beta.2 | 2,290 | 7/23/2024 |
1.5.0-beta.1 | 2,559 | 1/16/2024 |
1.4.0 | 12,318 | 1/5/2024 |
1.4.0-alpha.3 | 326 | 12/4/2023 |
1.4.0-alpha.2 | 110 | 12/1/2023 |
1.4.0-alpha.1 | 97 | 11/30/2023 |
1.3.3 | 3,653 | 11/7/2023 |
1.3.2 | 2,254 | 9/23/2023 |
1.3.1 | 522 | 9/9/2023 |
1.3.0 | 779 | 9/1/2023 |
1.2.12 | 253 | 8/29/2023 |
1.2.11 | 186 | 8/29/2023 |
1.2.8 | 222 | 8/28/2023 |
1.2.7 | 243 | 8/27/2023 |
1.2.6 | 201 | 8/25/2023 |
1.2.5 | 2,359 | 3/24/2023 |
1.2.4 | 843 | 3/14/2023 |
1.2.3 | 723 | 3/11/2023 |
1.2.2 | 384 | 3/10/2023 |
1.2.1 | 337 | 3/9/2023 |
1.2.0 | 319 | 3/8/2023 |
1.1.7 | 317 | 3/6/2023 |
1.1.5 | 476 | 2/14/2023 |
1.1.4 | 479 | 2/2/2023 |
1.1.3 | 368 | 2/2/2023 |
1.1.2 | 706 | 1/28/2023 |
1.1.1 | 413 | 1/27/2023 |
1.1.0 | 389 | 1/27/2023 |
1.0.7 | 423 | 1/18/2023 |
1.0.6 | 521 | 1/9/2023 |
1.0.5 | 355 | 1/9/2023 |
1.0.3 | 2,661 | 8/26/2022 |
1.0.2 | 473 | 8/26/2022 |
1.0.1 | 547 | 8/23/2022 |
1.0.0 | 707 | 8/22/2022 |
0.53.0 | 737 | 8/13/2022 |
0.52.2 | 864 | 7/29/2022 |
0.52.1 | 541 | 7/29/2022 |
0.52.0 | 520 | 7/28/2022 |
0.51.1 | 532 | 7/28/2022 |
0.51.0 | 507 | 7/27/2022 |
0.50.1 | 534 | 7/26/2022 |
0.50.0 | 530 | 7/26/2022 |
0.49.0 | 489 | 7/25/2022 |
0.48.1 | 526 | 7/19/2022 |
0.48.0 | 539 | 7/19/2022 |
0.47.0 | 505 | 7/18/2022 |
0.46.0 | 546 | 7/18/2022 |
0.45.0 | 545 | 7/18/2022 |
0.44.0 | 513 | 7/18/2022 |
0.43.1 | 556 | 7/18/2022 |
0.43.0 | 531 | 7/18/2022 |
0.42.0 | 593 | 7/17/2022 |
0.41.0 | 568 | 7/17/2022 |
0.40.0 | 545 | 7/17/2022 |
0.39.0 | 548 | 7/16/2022 |
0.38.0 | 509 | 7/16/2022 |
0.37.0 | 550 | 7/13/2022 |
0.36.3 | 637 | 7/9/2022 |
0.36.2 | 504 | 7/9/2022 |
0.36.1 | 529 | 7/9/2022 |
0.36.0 | 517 | 7/9/2022 |
0.35.1 | 524 | 7/8/2022 |
0.35.0 | 549 | 7/8/2022 |
0.34.3 | 571 | 7/1/2022 |
0.34.2 | 515 | 7/1/2022 |
0.34.1 | 568 | 6/30/2022 |
0.34.0 | 500 | 6/30/2022 |
0.33.0 | 553 | 6/29/2022 |
0.32.1 | 581 | 6/24/2022 |
0.32.0 | 525 | 6/24/2022 |
0.31.0 | 548 | 6/24/2022 |
0.29.0 | 543 | 6/24/2022 |
0.28.1 | 524 | 6/24/2022 |
0.28.0 | 537 | 6/23/2022 |
0.27.5 | 578 | 6/23/2022 |
0.27.4 | 554 | 6/23/2022 |
0.27.3 | 545 | 6/23/2022 |
0.27.2 | 517 | 6/23/2022 |
0.27.1 | 546 | 6/23/2022 |
0.27.0 | 521 | 6/23/2022 |
0.26.1 | 513 | 6/23/2022 |
0.26.0 | 552 | 6/23/2022 |
0.25.0 | 546 | 6/22/2022 |
0.24.0 | 551 | 6/22/2022 |
0.23.0 | 546 | 6/22/2022 |
0.22.0 | 491 | 6/22/2022 |
0.21.1 | 512 | 6/22/2022 |
0.21.0 | 514 | 6/22/2022 |
0.20.0 | 498 | 6/22/2022 |
0.19.1 | 537 | 6/21/2022 |
0.19.0 | 557 | 6/21/2022 |
0.18.0 | 526 | 6/21/2022 |
0.16.5 | 538 | 6/20/2022 |
0.16.4 | 522 | 6/20/2022 |
0.16.2 | 488 | 6/20/2022 |
0.16.1 | 520 | 6/20/2022 |
0.16.0 | 528 | 6/20/2022 |
0.15.1 | 554 | 6/20/2022 |
0.15.0 | 547 | 6/20/2022 |
0.14.0 | 549 | 6/20/2022 |
0.12.0 | 541 | 6/20/2022 |
0.10.0 | 514 | 6/20/2022 |
0.9.0 | 508 | 6/20/2022 |
0.8.0 | 552 | 6/20/2022 |
0.7.3 | 555 | 6/19/2022 |
0.7.2 | 546 | 6/19/2022 |
0.7.1 | 517 | 6/19/2022 |
0.7.0 | 493 | 6/19/2022 |
0.6.0 | 520 | 6/19/2022 |
0.3.3 | 519 | 6/19/2022 |
0.3.2 | 566 | 6/19/2022 |
0.0.0-beta.274 | 118 | 8/19/2024 |
0.0.0-beta.273 | 106 | 8/19/2024 |
0.0.0-beta.272 | 87 | 8/12/2024 |
0.0.0-beta.271 | 74 | 8/5/2024 |
0.0.0-beta.270 | 83 | 7/29/2024 |
0.0.0-beta.269 | 102 | 7/23/2024 |
⭐ Last 10 features:
Added Attached property BrowsableForType support.
Added default values support.
Added property changed callback support.
Added AttachedDependencyProperty support.
Released first version with WPF and DependencyAttrubute support.
Initial commit.
🐞 Last 10 bug fixes:
Added missing AllowMultiple to attributes.
Fixed some Attached properties bugs.
Fixed unused generator reference.
Fixed versioning bug.
Added generate-build-number: false.
Fixed tests.
Fixed initial project settings.