ASP.NET Core Window Setup

Shield UI Window for ASP.NET Core is a server-side wrapper component implemented as an ASP.NET Core MVC Helper.

For a detailed guide how to setup Shield UI for your ASP.NET Core project, check out this page.

The ASP.NET Core MVC helper API is a 1:1 mapping of the JavaScript Window widget configuration, so you only have to get familiar with a single set of configuration options:

// JavaScript Window demo
$("#window").shieldWindow({
    width: 600,
    height: 480,
    title: "Earth - Our Home Planet",
    modal: false
});
// ASP.NET Core Window demo
@(Html.ShieldWindow()
    .Name("window")
    .Width(600)
    .Height(480)
    .Title("Earth - Our Home Planet")
    .Modal(false)
)

To see the configuration options in action, please refer to our online demos.