1

私のWPFフォームにはカスタマイズされたPasswordBoxがあり、このPasswordBoxはマウスクリックイベントを受け取らないようです。クリックしてもカレットは表示されません。PasswordBoxの私のスタイルは次のとおりです。

    <Style x:Key="password" TargetType="{x:Type PasswordBox}">
        <Setter Property="Controller:PasswordBoxMonitor.IsMonitoring" Value="True" />
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type PasswordBox}">
                    <Border Name="Bd" Background="{TemplateBinding Background}"
                BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}"
                SnapsToDevicePixels="true">
                        <Grid>
                            <ScrollViewer x:Name="PART_ContentHost" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
                            <my:QETextBlock Text="Mật khẩu" Margin="0, 0, 0, 0"  Visibility="Collapsed" FontStyle="Normal" Name="txtPrompt" FontSize="12" FontFamily="Segoe UI"  />
                        </Grid>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsEnabled" Value="false">
                        </Trigger>
                        <Trigger Property="Controller:PasswordBoxMonitor.PasswordLength" Value="0">
                            <Setter Property="Visibility" TargetName="txtPrompt" Value="Visible" />
                        </Trigger>

                        <Trigger Property="IsFocused" Value="True">
                            <Setter Property="Visibility" TargetName="txtPrompt" Value="Hidden" />
                        </Trigger>

                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

このコントロールのマウスダウンイベント用のイベントハンドラーを追加して、このコントロールにフォーカスを合わせようとしています。

    txtPassword.MouseDown += txtPassword_MouseDown;

私のtxtPassword_MouseDown関数:

    private void txtPassword_MouseDown(object sender, MouseButtonEventArgs e)
    {
        txtPassword.Focus();
    }

しかし、PasswordBoxをクリックしても、この関数は実行されません。

4

1 に答える 1

1

私はそれを解決しました。誰かが設定IsHitTestVisible="False"したので、マウスのクリックに反応しませんでした。

于 2018-09-24T14:57:30.980 に答える