Hi,@Eduardo Gomez . Welcome Microsoft Q&A.
For the problem of disabling the button when the text box in the window is null or empty, you could try the following method.
Xaml:
<Border Padding="20" Width="300">
<StackPanel>
<TextBox
materialDesign:HintAssist.Hint="Name of the building"
materialDesign:HintAssist.IsFloating="True"
Text="{Binding Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
<TextBox
materialDesign:HintAssist.Hint="Address"
materialDesign:HintAssist.IsFloating="True"
Text="{Binding Address,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
<Button Content="Save" IsEnabled="{Binding IsEnabled}" Command="{Binding ButtonCommand}" />
</StackPanel>
</Border>
CodeBehind:
214713-9.txt
The result:

If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our [documentation][5] to enable e-mail notifications if you want to receive the related email notification for this thread.
[5]: https://learn.microsoft.com/en-us/answers/articles/67444/email-notifications.html