更改按钮BackColor,C ++ Visual Studio 2010

时间:2013-08-11 21:34:25

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

我的第一篇文章。 我正在尝试使用Windows窗体和C ++。 我有一些(基本的)问题。到目前为止的目标是编写一个程序,检查某个硬件是否通过USB端口插入,但在我完成实际工作之前,我想完成GUI,告知是否找到了硬件。 /> 所以我有一个标准的表单(Form1.h),然后我有主要方法所在的cpp类(usbStatus.cpp)和另一个cpp文件(connection.cpp),其中我打算将代码放到搜索中对于有用的硬件。在启动时,表单显示一个statusButton集,背景颜色为RED,statusLabel表示“搜索硬件”。然后我希望当其他代码(尚未编写)完成搜索硬件时,按钮背景颜色变为绿色(如果找到HW)并标记为“找到硬件”。嗯......没有任何反应。我已检查过跟踪并且代码已处理但没有可见的结果。我尝试过Invalidate()和Refresh()但没有成功。

我现在的极少看起来非常像这样:

Form1.h

namespace usbStatus{

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

    /// <summary>
    /// Summary for Form1
    /// </summary>
    public ref class Form1 : public System::Windows::Forms::Form
    {
    public:
        Form1(void)
        {
            InitializeComponent();
            //
            //TODO: Add the constructor code here
            //

        }
    ...

    void InitializeComponent(void)
        {

    ...
    this->statusButton = (gcnew System::Windows::Forms::ToolStripButton());
    this->statusLabel = (gcnew System::Windows::Forms::ToolStripLabel());
    ....

    void InitializeComponent(void)
    {
    ...
    }

在文件的末尾,我添加了以下方法

public: void Form1::UpdateStatusElements(Color color) 
{
    statusButton->BackColor = color;
    if (color == System::Drawing::Color::Green){
        //statusprogressBar->Enabled = false;
        statusLabel->Text = "Hardware found";
    } else {
        ...

usbStatus.cpp

#include "stdafx.h"
#include "Form1.h"
#include "Connection.h"

using namespace UsbStatus;


[STAThreadAttribute]
int main(array<System::String ^> ^args)
{

    // Enabling Windows XP visual effects before any controls are created
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false); 

    // Create the main window and run it
    //Application::Run(gcnew Form1());
    Form1 ^mainWindow = gcnew Form1();
    Application::Run(mainWindow);

if(Connection::GetStatus()) 
    mainWindow->UpdateStatusElements(System::Drawing::Color::Green);
else
    //mainWindow->UpdateStatusElements(System::Drawing::Color::Red);
delete mainWindow;
return 0;
}

Connection.h

#pragma once
#include "Form1.h"



ref class Connection
{
    private:
        static void CheckStatus();
        static void SetStatus(bool connected);
        static bool hwConnected;

    public:
        static bool GetStatus();

};

Connection.cpp

#include <windows.h>
#include "Connection.h"

using namespace UsbStatus;

...

bool Connection::GetStatus()
{
    CheckStatus();
    return true;
    //return hwConnected;
}

1 个答案:

答案 0 :(得分:1)

Application::Run(mainWindow);的来电是阻止来电。这意味着在对话框终止之前它不会返回。在内部,它将运行windows message loop。所以后续调用将在你的divalog关闭后执行 ...我认为这不是故意的。

您需要将支票移入Form1类。要么使用Load-Event(或覆盖OnLoad,要么Timer,以便定期检查状态并更新您的用户界面。您可以在Winforms Timer for Dummies中添加Timer将对话框编辑器从UI-Elements中删除到表单中。

另请参阅:{{3}}