Visual C ++ 2010 вопросы кода - PullRequest
       0

Visual C ++ 2010 вопросы кода

0 голосов
/ 18 февраля 2012

Я только начал с C ++ и решил использовать Visual C ++.

В приложении я выбрал Windows Forms Application в качестве своего проекта и затем "нарисовал" свое окно с помощью меню инструментов.

Теперь код выглядит так:

Form1.h

#pragma once

namespace Test {

    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
            //
        }

    protected:
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        ~Form1()
        {
            if (components)
            {
                delete components;
            }
        }
    private: System::Windows::Forms::ProgressBar^  progressBar1;
    protected: 

    private: System::Windows::Forms::Timer^  timer1;
    private: System::Windows::Forms::Label^  label1;
    private: System::Windows::Forms::Label^  label2;





    protected: 





    private: System::ComponentModel::IContainer^  components;
    protected: 


    protected: 

    private:
        /// <summary>
        /// Required designer variable.
        /// </summary>


#pragma region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        void InitializeComponent(void)
        {
            this->components = (gcnew System::ComponentModel::Container());
            System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid));
            this->progressBar1 = (gcnew System::Windows::Forms::ProgressBar());
            this->timer1 = (gcnew System::Windows::Forms::Timer(this->components));
            this->label1 = (gcnew System::Windows::Forms::Label());
            this->label2 = (gcnew System::Windows::Forms::Label());
            this->SuspendLayout();
            // 
            // progressBar1
            // 
            resources->ApplyResources(this->progressBar1, L"progressBar1");
            this->progressBar1->Name = L"progressBar1";
            // 
            // label1
            // 
            resources->ApplyResources(this->label1, L"label1");
            this->label1->BackColor = System::Drawing::Color::Transparent;
            this->label1->ForeColor = System::Drawing::Color::Red;
            this->label1->Name = L"label1";
            this->label1->Click += gcnew System::EventHandler(this, &Form1::label1_Click);
            // 
            // label2
            // 
            resources->ApplyResources(this->label2, L"label2");
            this->label2->BackColor = System::Drawing::Color::Transparent;
            this->label2->ForeColor = System::Drawing::Color::Red;
            this->label2->Name = L"label2";
            this->label2->Click += gcnew System::EventHandler(this, &Form1::label2_Click);
            // 
            // Form1
            // 
            resources->ApplyResources(this, L"$this");
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->Controls->Add(this->label2);
            this->Controls->Add(this->label1);
            this->Controls->Add(this->progressBar1);
            this->MaximizeBox = false;
            this->MinimizeBox = false;
            this->Name = L"Form1";
            this->Load += gcnew System::EventHandler(this, &Form1::Form1_Load);
            this->ResumeLayout(false);
            this->PerformLayout();

        }
#pragma endregion
    private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void webBrowser1_DocumentCompleted(System::Object^  sender, System::Windows::Forms::WebBrowserDocumentCompletedEventArgs^  e) {
             }
    private: System::Void pictureBox1_Click(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void Form1_Load(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void backgroundWorker1_DoWork(System::Object^  sender, System::ComponentModel::DoWorkEventArgs^  e) {
             }
    private: System::Void textBox1_TextChanged(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void label1_Click(System::Object^  sender, System::EventArgs^  e) {
             }
    private: System::Void label2_Click(System::Object^  sender, System::EventArgs^  e) {
             }
};
}

Я действительно не знаю, что мне с этим делать, потому что приведенный выше код кажется очень уродливым, также я могу назвать его C ++? Как я могу использовать окно предупреждения там, так как ни одна из ручных функций C ++, связанных с окнами сообщений, не работала в этом коде ...

Где я могу найти какое-нибудь хорошее руководство, относящееся к вышеуказанному языку кода? Мне просто нужны некоторые основы, такие как:

  • Отображение окна предупреждения.
  • Получение данных сайта и т. Д.

1 Ответ

1 голос
/ 18 февраля 2012

Если вы хотите выучить этот язык (это C ++ / CLI), есть книга Нишанта C ++ / CLI в действии .

Я удивлен, что у вас были проблемы с "нормальными" функциями C ++. Они должны работать, в том числе MessageBox. Вы забыли #include <windows.h>?

Если вы хотите изучать C ++, бегите как можно дальше от C ++ / CLI. Методы совершенно разные. Вместо этого выберите «Приложение Win32» при создании нового проекта.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...