为什么我禁用我的textBox为false,总是等于true?

时间:2014-04-25 13:40:49

标签: c# windows-phone-8 user-controls textbox radtextbox

我在平板电脑“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 ..但按钮是禁用的:

enter image description here

1 个答案:

答案 0 :(得分:0)

启用/禁用未添加到UI的控件。名为&#34; ttbx_shell&#34;的原始控件;因此,UI中显示的内容不会受到影响。