Here I giving my whole code...
Please help me guys....
#pragma once namespace New12 { 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 // button1Pos = Point(0,0); button1Speed = Point(4,4); } protected: /// <summary> /// Clean up any resources being used. /// </summary> ~Form1() { if (components) { delete components; } } private: System::Windows::Forms::Button^ button1; private: System::Windows::Forms::Timer^ Timer; private: System::ComponentModel::IContainer^ components; protected: private: /// <summary> /// Required designer variable. /// </summary> Point button1Speed; Point button1Pos; #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()); this->button1 = (gcnew System::Windows::Forms::Button()); this->Timer = (gcnew System::Windows::Forms::Timer(this->components)); this->SuspendLayout(); // // button1 // this->button1->Location = System::Drawing::Point(83, 72); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(75, 25); this->button1->TabIndex = 0; this->button1->Text = L"Touch Me"; this->button1->UseVisualStyleBackColor = true; this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click); // // Timer // this->Timer->Enabled = true; this->Timer->Interval = 10; this->Timer->Tick += gcnew System::EventHandler(this, &Form1::Timer_Tick); // // Form1 // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(297, 255); this->Controls->Add(this->button1); this->Name = L"Form1"; this->Text = L"Form1"; this->Paint += gcnew System::Windows::Forms::PaintEventHandler(this, &Form1::Form1_Paint); this->ResumeLayout(false); } #pragma endregion private: System::Void Form1_Paint(System::Object^ sender, System::Windows::Forms::PaintEventArgs^ e) { Graphics^ g = e->Graphics; g->SmoothingMode = Drawing2D::SmoothingMode::HighQuality; } private: System::Void Timer_Tick(System::Object^ sender, System::EventArgs^ e) { button1Pos.X += button1Pos.X; button1Pos.Y += button1Pos.Y; if(this->button1->Size = (100,50)) { Timer->Enabled = false; } } private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { Timer->Enabled = true; } }; }
DK