Form
Description
Usage
<WMStyleBase [email protected]></WMStyleBase>
<TelerikWindow class="@model.GetStringClasses()"
Modal="@this.Form.Modal"
[email protected]
State="@GetWindowState()"
ContainmentSelector="@SetContainmentSelector()"
Draggable="@Draggable"
@ref="this.TelerikWindowRef">
<WindowTitle>
@if (this.Form.Icon != null)
{
<img src="@this.GetIconImage()" width="18em">
}
@Text
</WindowTitle>
<WindowActions>
@if (this.Form.ControlBox)
{
@if (this.Form.MinimizeBox)
{
<WindowAction Name="Minimize"></WindowAction>
}
@if (this.Form.MaximizeBox)
{
<WindowAction Name="Maximize"></WindowAction>
}
<WindowAction Name="Close" OnClick="@FormClosing"></WindowAction>
}
</WindowActions>
<WindowContent>
<CascadingValue Value=MainTabOrderService>
@ChildContent
@{
if (Form.IsMdiContainer)
{
<WMMdiContainerComponent MdiChildren="@Form.MdiChildren"></WMMdiContainerComponent>
}
}
</CascadingValue>
</WindowContent>
</TelerikWindow>
Properties
Methods
Dynamic Rendering
Styles
Events
Last updated