0

我在“Windows Phone 8”平台上开发一个应用程序“shell”。我只是想在执行命令时禁用所有用户 UI 控制器。所有控制器按钮在“禁用”模式下都能正常工作,但我不知道为什么,我的控制器“TextBox”仍然处于活动状态。这很烦人,因为用户仍然可以在操作处理期间单击输入字段:'(

非常感谢大家 ;-)

这是我的代码,我在操作完成后尝试禁用和启用:

//.... Get the controller textBox in my class
ttbxInputShell = new RadTextBox() { Text = (ContentPanel.FindName("ttbx_shell") as RadTextBox).Text };
//....



// Disable Ui
    #region DisableUI
    public void DisableUi()
    {
        Deployment.Current.Dispatcher.BeginInvoke(() =>
        {
            ttbxInputShell.IsEnabled = false;           //No Work
            ttbxInputShell.IsHitTestVisible = false;    //No Work
            ttbxInputShell.IsReadOnly = true;           //No Work

            btnLastCommande.IsEnabled = false;          //Work
            btnHelpCommande.IsEnabled = false;          //Work
            btnExecuteCommande.IsEnabled = false;       //Work
        });

    }
    #endregion

    // Enable Ui
    #region EnableUI
    public void EnableUi()
    {
        Deployment.Current.Dispatcher.BeginInvoke(() =>
        {
            ttbxInputShell.IsEnabled = true;
            ttbxInputShell.IsHitTestVisible = true;
            ttbxInputShell.IsReadOnly = false;

            btnLastCommande.IsEnabled = true; 
            btnHelpCommande.IsEnabled = true; 
            btnExecuteCommande.IsEnabled = true;

        });
    }
    #endregion

XAML 代码

        <TextBox x:Name="ttbx_shell" KeyDown="ttbx_shell_KeyDown_1" GotFocus="ttbx_shell_GotFocus_1"  LostFocus="ttbx_shell_LostFocus_1" TextChanged="ttbx_shell_TextChanged_1" HorizontalAlignment="Stretch" VerticalAlignment="Center" TextWrapping="Wrap" Height="100" Margin="-7,-8,0,0" FontSize="26" Padding="3,6,3,0" Grid.Row="2" FontFamily="dos_font.ttf#Perfect DOS VGA 437 Win" />

        <Button x:Name="btnLastCommande" Content="F1" Grid.Row="2" Margin="231,0,55,0" Grid.ColumnSpan="3" Tap="btnLastCommande_Tap" />
        <Button x:Name="btnHelpCommande" Content="?" Grid.Row="2" Grid.Column="1" Margin="55,0,95,0" Grid.ColumnSpan="3" Tap="btnHelpCommande_Tap"/>
        <Button x:Name="btnExecuteCommande" Grid.Row="2" Grid.Column="2" Content="Enter" Padding="-3" Margin="55,0,-5,0" Grid.ColumnSpan="2" Tap="btnExecuteCommande_Tap"/>
    </Grid>

这是我的应用程序的图片,您可以在其中找到输入仍然是 enbale .. 但是按钮被禁用:

在此处输入图像描述

4

1 回答 1

0

您启用/禁用未添加到 UI 的控件。因此,UI 中显示的名称为“ttbx_shell”的原始控件不受影响。

于 2014-04-25T14:04:30.063 回答