Advanced Forum Search Results
-
As 4 is out in Beta don't we need a Silverlight 5 wishlist?
-
With binding, data converters, loading row events, why would you want to do this whan the grid can do just about anything when bound to an observable collection
-
I managed to do this by
1 - after the user authenticates in your form (existing non silverlight app in my case), encrypt the date and time of the authentication, (I also encrypt the user id for audit logging purposes). Then pass the encrypted information in on the url as a parameter.
When I start the silverlight app.
In app.xaml.cs ...
-
I've had some success with having a web service build and write the file to a folder on the web server. The folder has a public share on it. The silverlight side does this
System.Windows.Browser.HtmlPage.Window.Navigate(New Uri(sFileName), "_newWindow")
where sFileName is something like ...
-
here's a simple solution
background
dgPlan.itemssource = observable collection of clsPlan
XAML
<data:DataGrid ...
-
this might be helpful
http://social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/thread/1965a98f-7ec7-4ce3-b069-8cf45f08f1b4/
-
you could try using INotifyPropertyChanged
Public Class clsBoundToGrid
Implements INotifyPropertyChanged
Public Event PropertyChanged(ByVal sender As Object, ByVal e As System.ComponentModel.PropertyChangedEventArgs) Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Public Property BLINKER() As Long
Get
Return ...
-
I did some more work on this
1 - subclass the gridPartial Public Class MyDataGrid
Inherits DataGrid
Public GridRow As List(Of DataGridRow) = New List(Of DataGridRow) '
End Class
2 - track when you add / remove rows
XAML
<local:MyDataGrid x:Name="dgPlan"
LoadingRow="dgPlan_LoadingRow" ...
-
I'd like to be able to open a word document (2007) when I'm debugging a project. Word hangs until I stop debugging.
-
build and rebuild are finicky and depend on settings in the configuration manager. are you sure you are rebuilding the web project?
Right click on the web project and check the dependencies and build orders.
I don't think this matters but check the ServiceReferences.ClientConfig file and make sure you're client project is looking ...