21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
@using System.Globalization
|
|
|
|
<h3>SettingsBasic</h3>
|
|
|
|
<div class="col-12 col-sm-6">
|
|
|
|
<p>@localizer["Settings.Language"] : @Culture.DisplayName</p>
|
|
<div class="form-field d-flex align-items-center">
|
|
|
|
<DxComboBox Data="@Data"
|
|
TextFieldName="@nameof(Culture.DisplayName)"
|
|
@bind-Value="@Culture"
|
|
CssClass="cw-320"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-sm-6"></div>
|
|
|
|
@code {
|
|
|
|
}
|