프로그래밍언어/VB.NET

wpf Property lisview

부산딸랑이 2013. 7. 15. 22:32

Public Class User

    Public Property Name() As String

        Get

            Return m_Name

        End Get

        Set(value As String)

            m_Name = Value

        End Set

    End Property

    Private m_Name As String


    Public Property Age() As Integer

        Get

            Return m_Age

        End Get

        Set(value As Integer)

            m_Age = Value

        End Set

    End Property

    Private m_Age As Integer

End Class



     Dim items As New List(Of User)()

        items.Add(New User With {.Name = "이름", .Age = "40"})


        

        listview1.ItemsSource = items

'프로그래밍언어 > VB.NET' 카테고리의 다른 글

vb.net 파일경로에서 파일이름 반환  (0) 2013.08.06
VB.NET 체크박스 사용하기  (0) 2013.07.31
writeprocessmemory  (0) 2013.07.14
비베닷넷 무료 IDE   (0) 2013.07.13
VB.NET 문자열 배열내 값찾기  (0) 2013.07.13