dicembre 2008 Blog Posts

ScreenCasts interessanti

Segnalo questi screencast interessanti legati prevalentemente a WCF.

posted @ martedì 23 dicembre 2008 00:08 | Feedback (0)

Multi-threading your UI

Interessante post riguardante il multi-threading nel mondo windows form (classico e WPF) che prende in esame 5 tecniche per evitare il fatidico messaggio: “The calling thread cannot access this object because a different thread owns it”. Per quanto riguarda windows form penso userò spesso questo semplice e conciso:   1: // WinForm 2: private void OnConnectivityChanged(object sender, ConnStatusInfoEventArgs statusInformation) 3: { 4: this.Invoke(new System.Windows.Forms.MethodInvoker(delegate() 5:...

posted @ lunedì 15 dicembre 2008 12:48 | Feedback (1)