Advanced Forum Search Results
-
I'm not real familiar with C# - does anyone have a VB.NET way of doing this?
-
Is there a way to get the Name Property of the cell in a dataGrid when a user clicks on it (selectedItem)?
'Dim x = DirectCast(dataGrid.SelectedItem, myClass).????
Thanks
-
I found a great video tutorial - Silverlight / Learn #41. I was unable to successfully download the VB version, but gathered enough information to do what I wanted.
-
Could someone point me in the right direction as to where I might find some examples (in VB.NET) of where an autoComplete control is used (with either onKeyUp or selectionChanged events) to highlight or select the related rows in dataGrid control.
Thanks
-
Ken,
Yes, the first row is selected (selectionChanged) by default during the initial loading of the dataGrid. I'm trying to figure a way to by pass that and wait to see what the user chooses - and if that happens to be the first row then do whatever . . . .
Did I explain that correctly?
Thanks
-
I have a dataGrid that once a user clicks on a row the selectionChanged event is triggered and everything works as planned - UNLESS the users first click is on the very First row in the dataGrid - when this happens no selectionChanged is triggered. It is only after the user has clicked on any row other than the first row can he or she go back to ...
-
PERFECT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Thanks Ken . . . .
-
I have a dataGrid where each row consists of (firstName, lastName, email) - and what I am trying to accomplish via the dataGrid_SelectionChanged is to get the firstName only into a variable. . . .
Dim x = dataGrid.SelectedItem
I know the values are returned to x, I'm just not sure of how to parse it to return x(0) or x.firstName or ...
-
SEE - http://silverlight.net/forums/t/58893.aspx
-
OK - here's how I finally got things to work . . . .. .
Created a class myData with two properties (desc and myCnt)
Then -Dim distCnt = From x In myXML...<tlData> _
Group By x.<desc>.Value Into myCnt = Count() _
Select desc, myCntDim source as New List (Of ...