Yes, but I have an issue about the following code, MAUI do not have Window, GroupBox and TextBox control. And I cannot open above link about screencast. It is better to share a mini demo that could reproduce this issue.
If this problem needs to be solved urgently, it is recommended to open a support ticket for this. Please contact our paid phone support at MS Support. You will get 1:1 support on that
<Window x:Class="GssdDesktopClient.BitLocker.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GssdDesktopClient.BitLocker"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
WindowStyle="ToolWindow" SizeToContent="WidthAndHeight"
Title="Bit Locker - Enter Password" x:Name="window">
<GroupBox Margin="4" VerticalAlignment="Center" HorizontalAlignment="Center">
<GroupBox.Header >Enter Password</GroupBox.Header>
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="20"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Label Grid.Row="0" Grid.Column="0" Content="Enter password:"/>
<TextBox Grid.Row="0" Grid.Column="1" Width="150" x:Name="txtPassword" VerticalContentAlignment="Center"/>
<Button x:Name="updatePasswordButton" Grid.Row="2" Grid.Column="1" Content="Update Password" Width="100" VerticalAlignment="Center" HorizontalAlignment="Right"
ToolTip="Click update button to update your password" Click="OnUpdatePassword"/>
</Grid>
</GroupBox>
</Window>