Hi
I am making a WPF application where i use the Microsoft Kinect as a input device.
So if i want to acces my Gridview, i will need buttons to select the row selection to go up and down.
1.Since i have a Click system with my Kinect device, i only need a system to select the rows?
2. When i select a row, i want a pop-up window with the details of the row, like NAME, EMAIL, SUBJECT and TEXT.
- I have no idea how to do this?
How can i do this, I found things on your forum that includes RECORDS, but since u dont use them anymore, im struggling to find my way.
This is what i got
I am making a WPF application where i use the Microsoft Kinect as a input device.
So if i want to acces my Gridview, i will need buttons to select the row selection to go up and down.
1.Since i have a Click system with my Kinect device, i only need a system to select the rows?
2. When i select a row, i want a pop-up window with the details of the row, like NAME, EMAIL, SUBJECT and TEXT.
- I have no idea how to do this?
How can i do this, I found things on your forum that includes RECORDS, but since u dont use them anymore, im struggling to find my way.
This is what i got
private
void
Button_Click(
object
sender, RoutedEventArgs e)
{
int
i =
this
.radGridView.Records.IndexOf(
this
.radGridView.SelectedRecord);
int
nextCurrentIndex = i + 1;
if
(nextCurrentIndex <
this
.radGridView.Records.Count)
{
Record nextCurrentRecord =
this
.radGridView.Records[nextCurrentIndex];
nextCurrentRecord.IsSelected =
true
;
}
}