我们使用Infragistics UltraWinGrid作为自定义控件的基类。其中一个将使用此控件显示搜索结果的项目要求在未找到匹配项时显示用户友好的消息。
我们希望将该功能封装到派生控件中 - 因此,使用该控件的程序员无需在设置消息之外进行自定义。这必须以通用方式完成 - 一种尺寸适合所有数据集。
UltraWinGrid是否已经允许这种用途?如果是这样,我会在哪里发现它隐藏起来。 :-)
如果需要对此功能进行编码,我可以考虑一种算法,该算法会将空白记录添加到设置的任何记录集中并将其放入网格中。在您看来,这是处理解决方案的最佳方式吗?
答案 0 :(得分:2)
我不知道这是否会有所帮助,但这是完成线程的。我没有找到内置方式,所以我解决了这个问题如下:在我的类中继承了UltraGrid
Public Class MyGridPlain
Inherits Infragistics.Win.UltraWinGrid.UltraGrid
我添加了两个属性,一个用于指定开发人员想要在空数据案例中说出什么,另一个用于让开发人员将消息放在他们想要的位置
Private mEmptyDataText As String = String.Empty
Private mEmptyDataTextLocation As Point = New Point(30, 30)Public Shadows Property EmptyDataTextLocation() As Point
Get
Return mEmptyDataTextLocation
End Get
Set(ByVal value As Point)
mEmptyDataTextLocation = value
setEmptyMessageIfRequired()
End Set
End Property
Public Shadows Property EmptyDataText() As String
Get
Return mEmptyDataText
End Get
Set(ByVal value As String)
mEmptyDataText = value
setEmptyMessageIfRequired()
End Set
End Property
我添加了一个检查空数据的方法,如果是,则设置消息。另一种方法将删除现有的空消息。
Private Sub setEmptyMessageIfRequired()
removeExistingEmptyData()
'if there are no rows, and if there is an EmptyDataText message, display it now.
If EmptyDataText.Length > 0 AndAlso Rows.Count = 0 Then
Dim lbl As Label = New Label(EmptyDataText)
lbl.Name = "EmptyDataLabel"
lbl.Size = New Size(Width, 25)
lbl.Location = EmptyDataTextLocation
ControlUIElement.Control.Controls.Add(lbl)
End If
End SubPrivate Sub removeExistingEmptyData()
'any previous empty data messages?
Dim lblempty() As Control = Controls.Find("EmptyDataLabel", True)
If lblempty.Length > 0 Then
Controls.Remove(lblempty(0))
End If
End Sub
最后 - 我在网格的InitializeLayout事件中添加了对空数据的检查。
Private Sub grid_InitializeLayout(ByVal sender As Object, _
ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) _
Handles MyBase.InitializeLayout
setEmptyMessageIfRequired()
End Sub