Merhaba arkadaşlar bu makalemizde C++ da listView
nesnesinde My Sql veritabanındaki verilerin gösterimini sağlayacağız. Sonra textBox
a girilen değeri listView nesnesinde arayacağız. Aranan değer listView
nesnesinde bulunduğunda satırın arka plan rengini ve yazı rengi değişecek.
C++ da Windows Form nasıl ekleriz? Konusunu
daha önceki makalede anlatmıştım. Önceki makaleye ulaşmak için Buraya tıklayabilirsiniz.
İlk
önce Manage Nuget Packages browser kısmından libmysql i kurunuz. Daha sonra
References kısmına sağ tıklayalım. Add Referencesi seçip tıklayalım. Açılan Add
references penceresnde MySql.Data yı seçip, OK butonuna tıklayalım.
Biz
bu örneğimizde MySql de dbemployee şemasındaki staff tablosuna bağlanacağız. (Schema:dbemployee)
Şekil 1
Şekil 2
MyForm.h
#pragma once
namespace cpplistviewgetselectitem {
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
MySql::Data::MySqlClient;
using namespace std;
/// <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::ListView^ listView1;
private:
System::Windows::Forms::TextBox^ txtSearch;
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->listView1
= (gcnew
System::Windows::Forms::ListView());
this->txtSearch
= (gcnew
System::Windows::Forms::TextBox());
this->SuspendLayout();
//
// listView1
//
this->listView1->Font
= (gcnew
System::Drawing::Font(L"Arial Narrow", 12.75F, System::Drawing::FontStyle::Regular,
System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(162)));
this->listView1->HideSelection
= false;
this->listView1->Location
= System::Drawing::Point(0, 56);
this->listView1->Name
= L"listView1";
this->listView1->Size
= System::Drawing::Size(777, 589);
this->listView1->TabIndex
= 0;
this->listView1->UseCompatibleStateImageBehavior
= false;
this->listView1->View
= System::Windows::Forms::View::Details;
this->listView1->SelectedIndexChanged
+= gcnew System::EventHandler(this, &MyForm::listView1_SelectedIndexChanged);
//
// txtSearch
//
this->txtSearch->Font
= (gcnew
System::Drawing::Font(L"Arial Narrow", 12.75F, System::Drawing::FontStyle::Regular,
System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(162)));
this->txtSearch->Location
= System::Drawing::Point(12, 12);
this->txtSearch->Name
= L"txtSearch";
this->txtSearch->Size
= System::Drawing::Size(232, 27);
this->txtSearch->TabIndex
= 2;
this->txtSearch->TextChanged
+= gcnew System::EventHandler(this, &MyForm::txtSearch_TextChanged);
//
// MyForm
//
this->AutoScaleDimensions
= System::Drawing::SizeF(6, 13);
this->AutoScaleMode
= System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize
= System::Drawing::Size(778, 641);
this->Controls->Add(this->txtSearch);
this->Controls->Add(this->listView1);
this->Name = L"MyForm";
this->Text = L"MyForm";
this->Load += gcnew System::EventHandler(this, &MyForm::MyForm_Load);
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
private: System::Void
MyForm_Load(System::Object^ sender, System::EventArgs^ e)
{
String^ str = L"datasource=localhost;port=3306;username=root;password=1234";
listView1->GridLines
= true;
listView1->Columns->Add("Id", 40);
listView1->Columns->Add("Author", 250);
listView1->Columns->Add("Book", 380);
listView1->Columns->Add("Price", 80);
String^ sql = "Select
* From book.worldclassics";
MySqlConnection^ con = gcnew MySqlConnection();
con->ConnectionString
= str;
con->Open();
MySqlCommand^ cmd = gcnew MySqlCommand(sql, con);
MySqlDataAdapter^ da = gcnew MySqlDataAdapter();
MySqlDataReader^ dr =
cmd->ExecuteReader();
ListViewItem^ item = gcnew ListViewItem();
while
(dr->Read())
for (int i = 1; i
<= 1; i++)
{
item = listView1->Items->Add(dr->GetInt32(0).ToString());
item->SubItems->Add(dr->GetString(1));
item->SubItems->Add(dr->GetString(2));
item->SubItems->Add(dr->GetString(3));
}
con->Close();
txtSearch->Text
= "1";
}
private: System::Void txtSearch_TextChanged(System::Object^ sender, System::EventArgs^ e)
{
int id = System::Convert::ToInt32(txtSearch->Text);
for (int i = 0; i <
listView1->Items->Count; i++)
{
listView1->Items[System::Convert::ToInt32(id-1)]->Selected
= true;
listView1->Items[i]->BackColor
= System::Drawing::Color::White;
listView1->Items[i]->ForeColor
= System::Drawing::Color::Black;
if (id= System::Convert::ToInt32(txtSearch->Text))
{
listView1->Items[id-1]->BackColor
= System::Drawing::Color::Black;
listView1->Items[id-1]->ForeColor
= System::Drawing::Color::White;
}
}
}
private: System::Void listView1_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e)
{
listView1->SelectedItems->Clear();
}
};
}
MyForm.cpp
#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThreadAttribute]
void Main(array<String^>^ args) {
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
cpplistviewgetselectitem::MyForm form;
Application::Run(% form);
}
Bir
makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır
ŞAHİN
0 comments:
Yorum Gönder