Advanced Forum Search Results
-
Hi Mawashikid,
You save my weekend :)
I got your idea and its working now.
It would be nice if you provide xaml for LegendItemStyle
LegendItemStyle="{StaticResource LegendItemStyle}"
Thanks
Avtar
-
I got the solution. ScrollIntoView() method of datagrid provide this functinality.
dgWorkedOn.SelectedIndex = dgWorkedOn.ItemsSource.OfType().ToList().Count - 1;
dgWorkedOn.ScrollIntoView(dgWorkedOn.SelectedItem, (DataGridColumn)dgWorkedOn.Columns[0]);Avtar
-
Hi,
I need a help.
I have two datagrid. one of the datagrid have checkbox column and whenever User click on check box, I am adding that row to second datagrid and its successfully get added and after adding more than 5 row to second datagrid vertical scrollbar get enabled.
Problem: Now I want to show last added row which is ...
-
You can track that( row selected or cell click) event and change the TextColour property to different color.
-
Hi Iliyar,
You can achieve this by binding foreground property to model property or set forground directly in xaml.
Have a look I have achieve this by model property binding.
Page1.Xaml code
...
-
Hi spider,
Application.Current.Host.Source gives you the Uri instance
Now you can investigate this Uri and get whatever is required in your applicaiton.
Avtar
-
You can get host name by following code in silverlight
string hostName = Application.Current.Host.Source.Host; Avtar
-
you can get server ip address by following code in silverlight itself ( Client side code).
string serverIP = Application.Current.Host.Source.DnsSafeHost.ToString(); //address of the machine where you have hosted ur application
Hence no need to pass initparm or no need to pass server ip address from server to client by service ...
-
Hi daller,
I am not sure but have you regenerate proxy at client site after any modification at server site?
It might possible that your client proxy class don't have that attribute.
Avtar
-
Because client site you don't have full CLR support and you have only core CLR running at client site.