This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ContactFetcher | |
| { | |
| public event EventHandler<ContactFetchEventArgs> ContactFetch = delegate { }; | |
| public void BeginFetchAll(string user, string password) | |
| { | |
| ContactsService svc = new ContactsService("MyApp"); | |
| svc.setUserCredentials(user, password); | |
| List<ContactEntry> contacts = new List<ContactEntry>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html xmlns:v="urn:schemas-microsoft-com:vml" | |
| xmlns:o="urn:schemas-microsoft-com:office:office" | |
| xmlns:w="urn:schemas-microsoft-com:office:word" | |
| xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" | |
| xmlns="http://www.w3.org/TR/REC-html40"> | |
| <head> | |
| <meta http-equiv=Content-Type content="text/html; charset=windows-1252"> | |
| <meta name=ProgId content=Word.Document> | |
| <meta name=Generator content="Microsoft Word 12"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //ispired from http://frankmao.com/2010/11/19/when-caliburn-micro-meets-avalondock/ | |
| public class TabModel:Screen | |
| { | |
| protected override void OnActivate() | |
| { | |
| base.OnActivate(); | |
| } | |
| protected override void OnDeactivate(bool close) | |
| { | |
| base.OnDeactivate(close); |
NewerOlder