Add Controls to a Project
Follow the instructions below to add a control to your application:
- Open a Razor file (.cshtml).
- Call the
DevExtreme()
HtmlHelper extension method. - Call the control’s builder method.
For example, the following code adds the Button control to the Index.cshtml file:
@using MyApp.Models
<h2>Home</h2>
@(Html.DevExtreme()
.Button() // adds the Button control
// specifies the control's id and text
.ID("submitButton")
.Text("submit")
)
Refer to Create a Control and Scaffold Controls for more information on how to configure controls.