1

我目前面临的问题是,当我尝试将焦点设置在某个控件(文本框)上时,什么也没发生,也许我只是忽略了一些东西。(在某个地方我发现焦点是“低级”方法,应该使用 select() ,但是,它也不起作用)

从表单登录,我启动 EncryptPSW 表单的新实例

private void openToolStripMenuItem_Click(object sender, EventArgs e)
    {
        EncryptPSW ePSW = new EncryptPSW();
        ePSW.setOsLog(false, this);
        ePSW.ShowDialog();        
    }

在按钮(位于 EncryptPSW 表单上)单击事件我调用填充方法

public void fill()
    {
        if (textBoxPSW.Text.Length == 8)//psw has to be 8 chars long
        {
            if (save)//determinating whether save or fetch of data should be done
            { login.launchSave(textBoxPSW.Text,this); }
            else { login.launchOpen(textBoxPSW.Text,this); }
        }
        else { MessageBox.Show("The password must contain 8 characters");}
    }

从登录启动保存或打开方法(我的问题只是打开,因为在保存期间我不需要对焦点做任何事情)

public void launchOpen(string psw,EncryptPSW ePSW)
    {

        ePSW.Close();
        Encryptor.DecryptFile("loggin.bin", psw, this); //decrypting data and setting textBoxes Text property into the fetched ones
        setFocus();

    }

完成所有工作后,应调用 setFocus() 以设置焦点和其他属性。

public void setFocus()
    {
        textBoxDatabase.Focus();
        textBoxDatabase.SelectionStart = textBoxDatabase.TextLength - 1;
        textBoxDatabase.SelectionLength = 0;
    }

我尝试了很多不同的方法,例如:

从 EncryptPSW_FormClosed 中调用 setFocus() 在 EncryptPSW 关闭后调用整个打开进程(从 EncryptPSW_FormClosed 中)等等,但是我不记得全部了。

在 Form_Closed 的情况下,奇怪的是,当我试图从那里显示一个消息框而不是设置焦点时(只是为了看看问题可能出在哪里),它在 EncryptPSW 表单关闭之前显示。

我对此的唯一猜测是 EncryptPSW 的实例以某种方式阻止了登录表单及其控件

我希望我能很好地描述我的问题,并且至少有点道理;]

提前致谢,

问候,

雷莱斯

4

2 回答 2

0

好吧,这可能是我看到的最丑的东西,但是。

使用

public void setFocus() 
    { 
        textBoxDatabase.Focus(); 
        textBoxDatabase.SelectionStart = textBoxDatabase.TextLength - 1; 
        textBoxDatabase.SelectionLength = 0; 
    } 

更改您的代码

public void launchOpen(string psw,EncryptPSW ePSW)  
    {  

        ePSW.Close();  
        Encryptor.DecryptFile("loggin.bin", psw, this); //decrypting data and setting textBoxes Text property into the fetched ones  
        setFocus();  

    }  

delegate void settingfocus();
public void launchOpen(string psw,EncryptPSW ePSW)  
    {  

        ePSW.Close();  
        Encryptor.DecryptFile("loggin.bin", psw, this); //decrypting data and setting textBoxes Text property into the fetched ones  
    settingfocus sf = new settingfocus(setFocus);
    this.BeginInvoke(sf);

    }  

这对我有用

(很抱歉显然认为在程序之前插入“this”,并将第 x 行更改为 this 是易读的)

于 2012-07-02T13:52:14.293 回答
0

由于文本框在登录表单中,并且您正在从它作为对话框(子)打开 EcryptPWS,因此您的登录表单将无法将焦点设置为任何内容。关闭后您需要设置焦点。你可以这样做:

private void openToolStripMenuItem_Click(object sender, EventArgs e)
{
    using(EncryptPSW ePSW = new EncryptPSW())
    {
       ePSW.setOsLog(false, this);
       if (ePSW.ShowDialog() == DialogResult.OK)
       {
           textBoxDatabase.Focus(); 
       }
    }
} 

public void launchOpen(string psw,EncryptPSW ePSW) 
{ 
    ePSW.DialogResult = DialogResult.OK;
    ePSW.Close(); 
    Encryptor.DecryptFile("loggin.bin", psw, this); //decrypting data and setting textBoxes Text property into the fetched ones 
} 
于 2012-07-02T14:00:41.467 回答