Scegli una carta dal mazzo ed Er Genius la indovinerà...non ci credi? Prova
giovedì 19 dicembre 2013
[WP7 - WP8] Er Genius
Vi segnalo che è disponibile l'app Er Genius per la piattaforma Windows Phone.
mercoledì 18 dicembre 2013
[WP7 - WP8] Aggiornamento CarGest 1.0.0.5
Disponibile aggiornamento alla versione 1.0.0.5 per CarGest (Windows Phone).
- Miglioramenti vari
martedì 17 dicembre 2013
[WIN 8] Installare VMWare Player senza disinstallare Hyper-V
Ecco come installare VMWare Player su Win 8 senza dover disinstallare Hyper-V:
- Aprire il prompt dei comandi come amministratore: Start - Esegui - cmd (tasto destro Esegui come amministratore)
- Eseguire il seguente comando: bcdedit /set hypervisorlaunchtype off
- Riavviare il computer
- Installare VMWare Player
- Per riabilitare Hyper-V: ripetere il punto 1 ed eseguire il seguente comando: bcdedit /set hypervisorlaunchtype auto
Etichette:
"hyperv",
"vmware",
"windows 8"
sabato 14 dicembre 2013
Clonare un oggetto tramite reflection
Classe utility per clonare un oggetto tramite reflection.
public static object CloneObject(object objSource) { //step : 1 Get the type of source object and create a new instance of that type Type typeSource = objSource.GetType(); object objTarget = Activator.CreateInstance(typeSource); //Step2 : Get all the properties of source object type PropertyInfo[] propertyInfo = typeSource.GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance); //Step : 3 Assign all source property to taget object 's properties foreach (PropertyInfo property in propertyInfo) { //Check whether property can be written to if (property.CanWrite) { //Step : 4 check whether property type is value type, enum or string type if (property.PropertyType.IsValueType || property.PropertyType.IsEnum || property.PropertyType.Equals(typeof(System.String))) { property.SetValue(objTarget, property.GetValue(objSource, null), null); } //else property type is object/complex types, so need to recursively call this method until the end of the tree is reached else { object objPropertyValue = property.GetValue(objSource, null); if (objPropertyValue == null) { property.SetValue(objTarget, null, null); } else { property.SetValue(objTarget, CloneObject(objPropertyValue), null); } } } } return objTarget; } |
Etichette:
"c#"
sabato 7 dicembre 2013
[WP8] Webinar su sviluppo Windows Phone 8
Webinar su sviluppo Windows Phone 8.
Elenco:
Elenco:
- Le basi per lo sviluppo su Windows Phone tool, SDK, il primo progetto
- Design e User Experience come progettare un'applicazione
- Il ciclo di vita Fast Application Switching e Fast Resume
- Interagire con la rete download, upload e servizi
- Accesso ai dati isolated storage, database e data sharing
- Sviluppare una live app notifiche, Live Tile, lock screen
Etichette:
"webinar",
"windowsphone"
venerdì 6 dicembre 2013
[WP7 - WP8] Aggiornamento CarGest 1.0.0.4
Disponibile aggiornamento alla versione 1.0.0.4 per CarGest (Windows Phone).
- Modifica rifornimento
- Miglioramenti vari
Etichette:
"app",
"cargest",
"windowsphone"
domenica 1 dicembre 2013
[WP7] Programming Windows Phone 7 by Charles Petzold
Ebook gratuito rilasciato da Charles Petzold riguardante lo sviluppo di applicazioni per la piattaforma Windows Phone 7.
Iscriviti a:
Post (Atom)