I know I can change the hint of a textbox in the xaml code using

I would like to know if it's possible to change the hint using the property in the code behind.
I can't find the hint property in the environment

Maybe I have to include something in the code.
I don't know, that's why I'm asking this question.
Thank you.
Try this:
```c#
using MaterialDesignThemes.Wpf;
HintAssist.SetHint(SampleTextBox, "Awesome hint");
```
You can also see the relevant WPF docs for it here as well.
Thank you very much !
Most helpful comment
Try this:
```c#
using MaterialDesignThemes.Wpf;
HintAssist.SetHint(SampleTextBox, "Awesome hint");
```