c++ - 无法在表单文本框中更新(或连续写入)计数器

标签 c++ winforms visual-studio c++-cli

我是中级 C++ 程序员。但对 Visual Studio GUI 编程来说是新手。请相信我,我确实搜索了其他用户也遇到的以前的错误,但真的无法继续下去。非常感谢您的进一步帮助。

我只想在小屏幕上看到一个连续的计数器。当我按下开始按钮时,计数器必须开始,直到按下停止按钮。

我调试显示窗口的窗体项目,但是当我按下“开始”按钮时出现错误:

An unhandled exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll

Additional information: Cross-thread operation not valid: Control 'textBox1' accessed from a thread other than the thread it was created on.

我也尝试了/* */中代码部分的选择,但我还是不能做我想做的事。

#include <windows.h>

using namespace System;
using namespace System::Threading;

int formcounter, xx;

#pragma once

namespace denemeform {

    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;

    public ref class Form1 : public System::Windows::Forms::Form
    {

    public:
        Form1(void)
        {
            InitializeComponent();
            formcounter=0;
        }

    protected:
        ~Form1()
        {
            if (components)
            {
                delete components;
            }
        }
    private: System::Windows::Forms::Button^  button1;
    protected: 
    private: System::Windows::Forms::Button^  button2;
    private: System::Windows::Forms::TextBox^  textBox1;

    private:
        System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
        void InitializeComponent(void)
        {
            this->button1 = (gcnew System::Windows::Forms::Button());
            this->button2 = (gcnew System::Windows::Forms::Button());
            this->textBox1 = (gcnew System::Windows::Forms::TextBox());
            this->SuspendLayout();

            this->button1->Location = System::Drawing::Point(27, 24);
            this->button1->Name = L"button1";
            this->button1->Size = System::Drawing::Size(75, 23);
            this->button1->TabIndex = 0;
            this->button1->Text = L"&Start";
            this->button1->UseVisualStyleBackColor = true;
            this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);

            this->button2->Location = System::Drawing::Point(166, 24);
            this->button2->Name = L"button2";
            this->button2->Size = System::Drawing::Size(75, 23);
            this->button2->TabIndex = 1;
            this->button2->Text = L"Sto&p";
            this->button2->UseVisualStyleBackColor = true;
            this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click);

            this->textBox1->Location = System::Drawing::Point(82, 71);
            this->textBox1->Name = L"textBox1";
            this->textBox1->Size = System::Drawing::Size(100, 20);
            this->textBox1->TabIndex = 2;

            this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->ClientSize = System::Drawing::Size(269, 139);
            this->Controls->Add(this->textBox1);
            this->Controls->Add(this->button2);
            this->Controls->Add(this->button1);
            this->Name = L"Form1";
            this->Text = L"Form1";
            this->ResumeLayout(false);
            this->PerformLayout();
        }
#pragma endregion

        void Test() //test code:: when "Start" is pushed, this code is what executes
        {
            int formcounter=0; //test variable

            while(xx) 
            {
                formcounter++;
                this->textBox1->Text = formcounter.ToString(); //sets first textbox to 'a'
                Sleep(100); //pause for 1 second before continuing
            }
                /*formcounter++;
                if (this->InvokeRequired)
                this->Invoke(gcnew MethodInvoker(this, &Form1::Test));
            else
                this->textBox1->Text = formcounter.ToString();
                Sleep(1000);*/
        }

    private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) 
    {
        xx=1;
        /*Thread^ oThread = gcnew Thread( gcnew ThreadStart( this, &Form1::Test ) );
        oThread->Start();*/
        Thread^ tThread = gcnew Thread(gcnew ThreadStart(this, &Form1::Test));
        tThread->Start();
    }
    private: System::Void button2_Click(System::Object^  sender, System::EventArgs^  e) 
    {
        xx=0;
    }
};
}

最佳答案

代码现在可以正确执行。

void SetTextBoxOnce()
{
    this->textBox1->Text = formcounter.ToString(); 
}

void Test()  
{
    formcounter=0; //test variable

    while(xx) 
    {
        formcounter++;
    this->Invoke(gcnew MethodInvoker(this, &Form1::SetTextBoxOnce));
        Sleep(100);  
        }
    }

private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) 
{
    xx=1;
    Thread^ tThread = gcnew Thread(gcnew ThreadStart(this, &Form1::Test));
    tThread->Start();
}
private: System::Void button2_Click(System::Object^  sender, System::EventArgs^  e) 
{
    xx=0;
}

代码现在可以正确执行。

关于c++ - 无法在表单文本框中更新(或连续写入)计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13835672/

相关文章:

c# - 组合框 SelectedIndexChanged 事件 : how to get the previously selected index?

.net - WinForms ListView 和 TreeView : strange performance issues

c++ - SFML loadFromFile 不起作用,奇怪的错误

c++ - Qt无法创建独立的exe

c++ - 为什么 cmake 选错了库?

c++ - typeid 中的表达式在运行时被评估两次?

c# - 带项目符号的 RTF 列表在第一行的缩进方式不同

c++ - 为什么 Visual Studio 在构建时无法打开我的文件进行写入?

visual-studio - Visual Studio - 将解决方案移动到新文件夹和命名空间

c++ - 使c++程序在windows中的特定核心上运行