C\#에서 WPF ListView 바 인 딩 데이터 의 인 스 턴 스 상세 설명
WPF 에서 ListView 는 데 이 터 를 표시 하 는 데 매우 편리 합 니 다.우 리 는 그것 을 몇 개의 열 로 나 눌 수 있 습 니 다.각 열 은 하나의 데 이 터 를 표시 하지만 한 쪽 에 있 습 니 다.
그렇다면 어떻게 이런 효 과 를 이 룰 수 있 을 까?바 인 딩 으로 해 야 한다.
우리 먼저 그의 xmal 코드 를 보 자.
<ListView Name="receiveList" Grid.Row="0">
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn Header=" "
Width="200"
DisplayMemberBinding="{Binding Path=Senderuser}" />
<GridViewColumn Header=" "
Width="350"
DisplayMemberBinding="{Binding Path=Topic}" />
<GridViewColumn Header=" " DisplayMemberBinding="{Binding Path=Ffile}"
Width="200" />
<GridViewColumn Header=" " Width="150" DisplayMemberBinding="{Binding Path=Time}"/>
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
위의 코드 에 있 는 모든 GridView Column 은 바 인 딩{Bind Path=바 인 딩 소스 로 서 의 클래스 의 구성원 속성}이 있 습 니 다.다음은 바 인 딩 클래스 를 살 펴 보 겠 습 니 다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmailClient
{
class MailList : INotifyPropertyChanged
{
public string senduser;
public string topic;
public string file;
public string time;
public event PropertyChangedEventHandler PropertyChanged;
public string Senderuser
{
get
{
return senduser;
}
set
{
senduser = value;
if (this.PropertyChanged != null)// , Age
{
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Age"));
}
}
}
public string Topic
{
get
{
return topic;
}
set
{
topic = value;
if (this.PropertyChanged != null)// , Age
{
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Age"));
}
}
}
public string Ffile
{
get
{
return file;
}
set
{
file = value;
if (this.PropertyChanged != null)// , Age
{
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Age"));
}
}
}
public string Time
{
get
{
return time;
}
set
{
time = value;
if (this.PropertyChanged != null)// , Age
{
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Age"));
}
}
}
public MailList() { }
public MailList(string senduser,string topic,string file,string time)
{
this.senduser = senduser;
this.topic = topic;
this.file = file;
this.time = time;
}
}
}
지금 우 리 는 우리 가 방금 바 인 딩 한 속성 이 바로 이 종류 에 있 는 것 을 볼 수 있 습 니 다.그러면 어떻게 응용 해 야 합 니까?제 애플 리 케 이 션 코드 를 살 펴 보 겠 습 니 다.
private List<MailList> maillist;
maillist = new List<MailList>();
이상 의 코드 는 우리 가 삽입 한 데 이 터 를 저장 하기 위해 list 를 설명 합 니 다.제 소스 코드 는 서버 에서 받 은 메 일 링 리스트 이기 때 문 입 니 다.
maillist.Add(new MailList("xxxxxx", "xxxxxxxx", "xxxxxx", "xxxxxx"));
receiveList.ItemsSource = maillist;
이렇게 쓰 면 위 에 있 는 도중에 얻 은 것 은 xxxxx 입 니 다.그럼 바 인 딩 은 이 렇 습 니 다.
궁금 한 점 이 있 으 시 면 메 시 지 를 남기 거나 본 사이트 의 커 뮤 니 티 에 가서 토론 을 교류 하 세 요.읽 어 주 셔 서 감사합니다. 도움 이 되 셨 으 면 좋 겠 습 니 다.본 사이트 에 대한 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.