溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

VB.NET數(shù)據(jù)綁定怎么用

發(fā)布時間:2021-12-01 17:13:12 來源:億速云 閱讀:223 作者:小新 欄目:編程語言

這篇文章主要介紹VB.NET數(shù)據(jù)綁定怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

VB.NET數(shù)據(jù)綁定能應用于控件的任何屬性。我看到過很多人提到能夠綁定文本框的背景顏色到數(shù)據(jù)項,舉個例子,超期的帳號的背景色顯示紅色。但是如果你試圖使用數(shù)據(jù)集或者數(shù)據(jù)表實現(xiàn)該功能,將會遇到問題。數(shù)據(jù)行只能保持受到限制的數(shù)據(jù)類型,并且不支持Color類型。如果你不能把顏色存儲在VB.NET數(shù)據(jù)綁定顏色呢?

有些途徑可以解決這個問題,但是最簡單的是用綁定到自定義VB.NET數(shù)據(jù)綁定到數(shù)據(jù)表。自定義業(yè)務對象的屬性可能是Color型的,這樣的屬性能綁定到控件的BackColor屬性。

為了演示,我定義了下面的自定義事務對象:

Public Class Account   Dim m_nAccountID As Integer  Dim m_sCustomerName As String  Dim m_dblBalance As Double   Public Sub New(ByVal nAccountID As Integer, ByVal sCustomerName As   String, _ByVal dblBalance As Double)  Me.AccountID = nAccountID Me.CustomerName = sCustomerName Me.Balance = dblBalance End Sub   Public Property AccountID() As Integer  Get  Return m_nAccountID  End Get  Set(ByVal Value As Integer)  m_nAccountID = Value End Set  End Property   Public Property CustomerName() As String  Get  Return m_sCustomerName  End Get  Set(ByVal Value As String)  m_sCustomerName = Value End Set  End Property   Public Property Balance() As Double  Get  Return m_dblBalance  End Get  Set(ByVal Value As Double)  m_dblBalance = Value End Set  End Property   Public ReadOnly Property BackColor() As Color  Get  If m_dblBalance < 0 Then  Return Color.Salmon  Else  Return SystemColors.Window  End If  End Get  End Property  End Class

注意只讀的BackColor屬性從Balance屬性中得到值,并且為負平衡(negative balance)暴露了一個不同的顏色。該類的其它元素很直接。

以上是“VB.NET數(shù)據(jù)綁定怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI