Skip to content

A library to quickly generate dialog, and get dynamic model binding back as a result

Notifications You must be signed in to change notification settings

NathanielACollier/ncWPFFormsLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nac.wpf.forms

  • Library to build WPF GUI apps quickly

  • nuget package nac.wpf.forms

Examples

Simple form with a button

  • var form = new Form();
    int clickCount = 0;
    form
      .TextBoxFor("Status")
      .ButtonWithLabel("Click Me!", (sender, args) =>
                       {
                           form.Model["Status"] = $"Clicked {++clickCount} times";
                       })
      .Display();
  • image-20211124123145722

About

A library to quickly generate dialog, and get dynamic model binding back as a result

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published