TreeView Mesajlaşma Örnek-VisualBasic.Net

Bu makalemizde treeview kullanarak çok basit bir mesajlaşma örneği göreceğiz. Formunuza 1 adet TreeView, TextBox, Button ve ImageList ekleyin. ImageListin Collection kısmına seçmiş
olduğuz resimleri ekleyin.



Şekil 1


Şekil 2

Public Class Form1

Private Sub btnEkle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEkle.Click
TreeView1.ImageList = ımageList1
TreeView1.Nodes.Add("Bahadır >" & txtMesaj.Text & " " & Now)
txtMesaj.Clear()
End Sub


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
With TreeView1
.ShowRootLines = False
.ShowPlusMinus = False

End With
End Sub

Private Sub txtMesaj_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtMesaj.KeyPress
If e.KeyChar = ChrW(Keys.Enter) Then
e.Handled = True
btnEkle_Click(sender, e)
End If
End Sub
End Class

Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...