:F#/ SILVERLIGHT綁定到給定的數據結構代數數據類型
type Candidate = SalesRep of SalesRep | Analyst of Analyst
type ScorableCandidate = {
candidate: Candidate ;
mutable comments: string ;
mutable score: int ;
}
並且希望能夠顯示任一候選者的數據網格,是有可能結合(使用WPF結合)到ScorableCandidate?
<telerik:GridViewDataColumn Header="First Name" DataMemberBinding="{Binding candidate.fname}" IsFilterable="False" Width="100"/>
我在想,不會,因爲綁定語法必須能夠解構類型 - 我認爲這是不可能的。
THX
牛逼
我不用WPF來給出一個很好的答案,但是我工作過的小型項目使用了CustomerConvertors(http://msdn.microsoft.com/zh-cn/library/aa970913.aspx )來獲得你想要的功能。 – Juliet 2010-08-26 17:16:55