C++ da ListBox a Array Metoduyla Items Ekleme
Merhaba arkadaşlar bu makalemizde C++ da array metodunu kullanarak listbox nesnesine itemslerinin nasıl eklendiğini göreceğiz.
C++ da Windows Form nasıl ekleriz? Konusunu daha önceki makalede anlatmıştım. Önceki makaleye ulaşmak için Buraya tıklayabilirsiniz.
Şekil 1
MyForm.h
#pragma once
namespace cpplistboxarray {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace System::Runtime::InteropServices;
/// <summary>
/// Summary for MyForm
/// </summary>
public ref class MyForm : public System::Windows::Forms::Form
{
public:
MyForm(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}
protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~MyForm()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::ListBox^ listBox1;
private: System::ComponentModel::BackgroundWorker^ backgroundWorker1;
protected:
private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;
#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->listBox1 = (gcnew System::Windows::Forms::ListBox());
this->backgroundWorker1 = (gcnew System::ComponentModel::BackgroundWorker());
this->SuspendLayout();
//
// listBox1
//
listBox1 = gcnew ListBox;
listBox1->Location = Point(10, 10);
/*you can add item with this method.
itemleri bu sekilde ekleyebilirsiniz*/
listBox1->Items->Add("Bahadir Sahin");
listBox1->Items->Add("Melissa Parker");
listBox1->Items->Add("Tommy Paton");
listBox1->Items->Add("Michael Alon");
listBox1->Items->Add("Mike Carson");
/*Or you can add items as an array.
ya da dizi olarak itemleri ekleyebiliriz*/
array<String^>^ strMembers = { "Tracy Abbot", "Nancy White ", "Jack Fox","Alina Benson","Joe Eagle " ,"Johanna Manson" ,"Emilia Peterson" ,"Tom Benson" };
listBox1->Items->AddRange(strMembers);
this->listBox1->Font = (gcnew System::Drawing::Font(L"Arial Narrow", 12, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(162)));
this->listBox1->FormattingEnabled = true;
this->listBox1->ItemHeight = 20;
this->listBox1->Location = System::Drawing::Point(0, 0);
this->listBox1->Name = L"listBox1";
this->listBox1->Size = System::Drawing::Size(300, 444);
this->listBox1->TabIndex = 0;
//
// MyForm
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(305, 448);
this->Controls->Add(this->listBox1);
this->Name = L"MyForm";
this->Text = L"MyForm";
this->Load += gcnew System::EventHandler(this, &MyForm::MyForm_Load);
this->ResumeLayout(false);
}
#pragma endregion
private: System::Void MyForm_Load(System::Object^ sender, System::EventArgs^ e)
{
this->Text = L"ListBox example...";
}
};
}
MyForm.cpp
#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThreadAttribute]
void Main(array<String^>^ args) {
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
cpplistboxarray::MyForm form;
Application::Run(% form);
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN