iNKORE-NET / UI.WPF.Modern

Modern (Fluent 2) styles and controls for your WPF applications
GNU Lesser General Public License v2.1
447 stars 39 forks source link

Add InputBox dialog #46

Closed JeremyAnsel closed 7 months ago

JeremyAnsel commented 7 months ago

Fix #45

Impement a InputBox using a ContentDialog.

To ask the user to enter a string, use this code:

            string response = await InputBox.ShowAsync(
                "Response",
                "Enter a response",
                "message");

The dialog looks like image

NotYoojun commented 7 months ago

Thanks!