Advanced Forum Search Results
-
Hi,
What I did to restore breakpoints on my Silverlight Project is to remove the link to my silverlight app from my silverlight host and then add it again, this seem to fix it.
-
Hi,
Here's the situation: I have a DataGrid bind to an Observable Collection List. What I need is to the change the background color of some specific Rows in the DataGrid and to keep these rows with the selected color even if more elements are added or removed from the List.
Any Ideas?
Thanks
-
Hi,
Im triying to set the focus on the textbox control named myTextBox by code from the page.xaml.cs but it doesn't seem to be accessible.
Here is my code? any ideas?
<my:DataGrid x:Name="dg" Grid.Row="0">
<my:DataGrid.Columns>
<my:DataGridTemplateColumn Header="First ...
-
Hi,
I need to set focus to a especific cell in a datagrid by pressing a button, this should position the cursor in the DataGridCell so i can start typing right away
-
I have the same problem and I can't figure it out,
please let me know if you solve this
-
sladapter,
By adding the following code
dg.SelectedItem = source[source.Count - 1];
dg.CurrentColumn = dg.Columns[1];
dg.Focus();
dg.BeginEdit();
I can make the desired column and the last row added to get the focus, but I can't start typing right away on the selected cell.
-
Hi Slapdapter,
What exactly is the StoryGrid? By setting the BeginEdit() method on the datagrid the first row gets into edition mode but no the especific cell and it is always the first row.
Here is small version of the code im working private ObservableCollection source;
private ObservableCollection<Data> source;public Page() ...
-
Hi,
Here is my problem: I have a button wich inserts the values from 4 textboxes into a datagrid. What I need is that after the new row is been added the cursor is set to the second cell in this new row so i can start typing new values for that specific cell.
Any ideas
thanks