DataRepeater.CurrentItem 속성
업데이트: 2007년 11월
DataRepeater의 현재 DataRepeaterItem을 가져옵니다.
네임스페이스: Microsoft.VisualBasic.PowerPacks
어셈블리: Microsoft.VisualBasic.PowerPacks.Vs(Microsoft.VisualBasic.PowerPacks.Vs.dll)
구문
<BrowsableAttribute(False)> _
Public ReadOnly Property CurrentItem As DataRepeaterItem
Dim instance As DataRepeater
Dim value As DataRepeaterItem
value = instance.CurrentItem
[BrowsableAttribute(false)]
public DataRepeaterItem CurrentItem { get; }
[BrowsableAttribute(false)]
public:
property DataRepeaterItem^ CurrentItem {
DataRepeaterItem^ get ();
}
public function get CurrentItem () : DataRepeaterItem
속성 값
형식: Microsoft.VisualBasic.PowerPacks.DataRepeaterItem
현재 선택된 개체입니다.
설명
CurrentItem 속성을 사용하여 런타임에 현재 선택한 DataRepeaterItem의 컨트롤 또는 데이터를 변경합니다.
예제
다음 예제에서는 CurrentItem 속성을 사용하여 선택한 항목을 변경하는 방법을 보여 줍니다. 이 예제에서는 폼에 DataRepeater1이라는 바인딩된 DataRepeater, UnitsInStockTextBox라는 바인딩된 TextBox 및 LowStockWarningLabel이라는 Label이 포함되어 있는 것으로 가정합니다.
Private Sub DataRepeater1_CurrentItemIndexChanged(ByVal sender _
As Object, ByVal e As System.EventArgs) Handles _
DataRepeater1.CurrentItemIndexChanged
' Exit if the control is first loading.
If DataRepeater1.CurrentItem Is Nothing Then Exit Sub
' Check for zero or negative quantity.
If _
CDbl(DataRepeater1.CurrentItem.Controls("UnitsInStockTextBox").Text) _
< 1 Then
' Display a the warning label on the form.
Me.LowStockWarningLabel.Visible = True
Else
Me.LowStockWarningLabel.Visible = False
End If
End Sub
private void dataRepeater1_CurrentItemIndexChanged(object sender, System.EventArgs e)
{
// Exit if the control is first loading.
if (dataRepeater1.CurrentItem == null) { return; }
// Check for zero quantity.
if (dataRepeater1.CurrentItem.Controls["unitsInStockTextBox"].Text == "0")
// Display a the warning label on the form.
{
this.lowStockWarningLabel.Visible = true;
}
else
{
this.lowStockWarningLabel.Visible = false;
}
}
권한
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.
참고 항목
참조
Microsoft.VisualBasic.PowerPacks 네임스페이스