MattEqualsCoder.DynamicForms.Core 0.0.2

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MattEqualsCoder.DynamicForms.Core --version 0.0.2
NuGet\Install-Package MattEqualsCoder.DynamicForms.Core -Version 0.0.2
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="MattEqualsCoder.DynamicForms.Core" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MattEqualsCoder.DynamicForms.Core --version 0.0.2
#r "nuget: MattEqualsCoder.DynamicForms.Core, 0.0.2"
#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 MattEqualsCoder.DynamicForms.Core as a Cake Addin
#addin nuget:?package=MattEqualsCoder.DynamicForms.Core&version=0.0.2

// Install MattEqualsCoder.DynamicForms.Core as a Cake Tool
#tool nuget:?package=MattEqualsCoder.DynamicForms.Core&version=0.0.2

Dynamic Forms

Dynamic UI builder for WPF and Avalonia. By creating a ViewModel with attributes attached to properties and events and passing that ViewModel into the DynamicFormControl, you can have the control build a form with various different controls to accommodate a wide variety of data types.

image

You can create the above via the below code:

ViewModel

public class BasicViewModel
{
    [DynamicFormFieldText]
    public string BasicExampleText => "DynamicForms allows you to use property and event attributes to build a form dynamically for both WPF and Avalonia.";
    
    [DynamicFormFieldTextBox("Basic Text Box")]
    public string TextBoxOne { get; set; } = "";

    [DynamicFormFieldComboBox("Basic Combo Box", comboBoxOptionsProperty: nameof(ComboBoxOptions))]
    public string ComboBoxOne { get; set; } = "Test 3";

    [DynamicFormFieldButton("View YAML")] 
    public event EventHandler? ButtonPress;

    public string[] ComboBoxOptions => ["Test 1", "Test 2", "Test 3"];
}

Window C#

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        
        var model = new BasicViewModel();

        model.ButtonPress += (sender, args) =>
        {
            Console.WriteLine("Button pressed");
        };

        DataContext = model;
    }
}

Window XAML

<control:DynamicFormControl Data="{Binding}" Margin="5" />

Usage

  1. Create multiple projects
    • Shared library for view model classes
    • WPF application
    • Avalonia application
  2. Install nuget packages
    • Shared library: MattEqualsCoder.DynamicForms.Core
    • WPF application: MattEqualsCoder.DynamicForms.WPF
    • Avalonia application: MattEqualsCoder.DynamicForms.Avalonia
  3. Add controls to WPF and Avalonia windows

Documentation

You can view additional documentation about using it here.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on MattEqualsCoder.DynamicForms.Core:

Package Downloads
MattEqualsCoder.DynamicForms.Avalonia

Library to dynamically generate forms for user input based on attributes.

MattEqualsCoder.DynamicForms.WPF

Library to dynamically generate forms for user input based on attributes.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.3-rc.1 255 4/21/2024
0.0.2 117 4/8/2024
0.0.1-rc.1 55 4/6/2024