# Placeholder

Blazor Edition provides a set of native UI controls built for Blazor such as FlexGrid, Chart, ListView, and input controls including AutoComplete and ComboBox.

## Content



DatePicker lets you display a watermark text in the DatePicker control when nothing is selected or displayed in it. You can add a watermark text to the DatePicker control using [Placeholder](/componentone/api/blazor/online-blazor/dotnet-api/C1.Blazor.DateTimeEditors/C1.Blazor.DateTimeEditors.C1TimeEditor.Placeholder.html) property of the [C1TimeEditor](/componentone/api/blazor/online-blazor/dotnet-api/C1.Blazor.DateTimeEditors/C1.Blazor.DateTimeEditors.C1TimeEditor.html) class, which prompts user to select the time from the time picker of the control.

**![Watermark in TimeEditor control](https://cdn.mescius.io/document-site-files/images/f5b600ba-f1a7-4f89-a20c-aa6c0c35880d/images/timeeditor-placeholder.png)**

The following code shows the usage of the **Placeholder** property to add a watermark text in the TimeEditor control:

```csharp
<C1TimeEditor Placeholder="Enter time"></C1TimeEditor>
```