Hello @Nico Schulz Welcome to Microsoft Q&A
Please check Dialog controls document, this behavior is normal by-design.
Dialog controls are modal UI overlays that provide contextual app information. They block interactions with the app window until being explicitly dismissed. They often request some kind of action from the user.
If you do want to click click custom title bar when contentdialog is opened, we suggest use Popup to replace Dialog control. For more detail please refer this document .
<Popup VerticalOffset="10" HorizontalOffset="200" x:Name="StandardPopup">
<Border BorderBrush="{StaticResource ApplicationForegroundThemeBrush}"
Background="{StaticResource ApplicationPageBackgroundThemeBrush}"
BorderThickness="2" Width="200" Height="200">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="Simple Popup" FontSize="24.667" HorizontalAlignment="Center"/>
<Button Content="Close" Click="ClosePopupClicked" HorizontalAlignment="Center"/>
</StackPanel>
</Border>
</Popup>
update 1
if you want to grey out the the controls but not titlebar, you could use LoadingControl control to implement
For example:
<controls:Loading x:Name="LoadingControl">
<controls:Loading.Background>
<SolidColorBrush Opacity="0.7" Color="Black" />
</controls:Loading.Background>
<ContentControl x:Name="LoadingContentControl">
<DataTemplate>
<TextBlock Text="Hello" />
</DataTemplate>
</ContentControl>
</controls:Loading>
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.