redui 1.0.0-alpha0011

This is a prerelease version of redui.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package redui --version 1.0.0-alpha0011
                    
NuGet\Install-Package redui -Version 1.0.0-alpha0011
                    
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="redui" Version="1.0.0-alpha0011" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="redui" Version="1.0.0-alpha0011" />
                    
Directory.Packages.props
<PackageReference Include="redui" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add redui --version 1.0.0-alpha0011
                    
#r "nuget: redui, 1.0.0-alpha0011"
                    
#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.
#:package redui@1.0.0-alpha0011
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=redui&version=1.0.0-alpha0011&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=redui&version=1.0.0-alpha0011&prerelease
                    
Install as a Cake Tool

Typescript UI framework.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-beta001 54 4/28/2014
1.0.0-alpha0026 41 4/14/2014
1.0.0-alpha0024 47 3/17/2014
1.0.0-alpha0023 42 2/23/2014
1.0.0-alpha0022 39 2/17/2014
1.0.0-alpha0021 40 1/29/2014
1.0.0-alpha0020 42 1/17/2014
1.0.0-alpha0019 43 12/5/2013
1.0.0-alpha0018 45 11/25/2013
1.0.0-alpha0017 46 11/18/2013
1.0.0-alpha0016 41 11/14/2013
1.0.0-alpha0015 43 11/12/2013
1.0.0-alpha0014 43 11/7/2013
1.0.0-alpha0013 42 11/4/2013
1.0.0-alpha0012 41 10/30/2013
1.0.0-alpha0011 44 10/7/2013
1.0.0-alpha0010 45 10/2/2013
1.0.0-alpha0009 41 10/2/2013
1.0.0-alpha0008 44 10/2/2013
Loading failed

* Every control gets a reference to the window
* When window is shown as modal the first editable control inside the modal window gets focus
* When window is shown as modal, it is positioned in the screen center, regardless of what was set in the model
* Pressing Esc closes (hides) the modal window (only works when focus stays inside the modal findow)
* Pressing Enter closes (hides) the modal window (only works when focus stays inside the modal findow)
* Window accepts an object with hooks for its life cycle events: initializing, initialized, binding, bound, showing, closing, closed
* Window exposes "redui.window.closing" and "redui.window.closed" events returning a dialog result
* Clicking a Cancel button (declared as "isDialogButton" with "dialogResult": "Cancel"), closing the window with the cross button or by pressing Esc closes the window and triggers "redui.window.closed" with dialogResult "Cancel"
* Clicking OK button (declared as "isDialogButton" with "dialogResult": "OK") or pressing Enter closes the window and triggers "redui.window.closed" with dialogResult "OK"
* Clicking any button declared as "isDialogButton" with non-empty "dialogResult" closes the window and triggers "redui.window.closed" with the specified dialogResult

See complete list of currently implemented controls and features at https://redui.codeplex.com/wikipage?title=Release%20Notes