18 lines
377 B
C#
18 lines
377 B
C#
using DevExpress.Blazor;
|
|
using Microsoft.AspNetCore.Components;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace TIAMSharedUI.Pages.Components
|
|
{
|
|
public class TiamDXTextBox : DxTextBox
|
|
{
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
this.CssClass = "dx-textbox tiam-textbox";
|
|
|
|
}
|
|
}
|
|
}
|
|
|