release_notes.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. Weekly Planner Silverlight v1.2
  2. ===============================
  3. This example application demonstrates how to build custom user interface
  4. controls for Windows Phone 7 using Microsoft Silverlight.
  5. The example has been developed with Silverlight for Windows Phone devices
  6. and tested to work on Windows Phone 7.
  7. This example application is hosted in Nokia Developer Projects:
  8. - http://projects.developer.nokia.com/wpweeklyplanner
  9. For more information on the implementation and porting, visit the wiki pages:
  10. - http://projects.developer.nokia.com/wpweeklyplanner/wiki
  11. - http://projects.developer.nokia.com/wpweeklyplanner/wiki/porting
  12. PREREQUISITES
  13. -------------------------------------------------------------------------------
  14. - C# basics
  15. - Development environment 'Microsoft Visual Studio 2010 Express for Windows
  16. Phone'
  17. LINKS
  18. -------------------------------------------------------------------------------
  19. Getting Started Guide:
  20. http://create.msdn.com/en-us/home/getting_started
  21. Learn About Windows Phone 7 Development:
  22. http://msdn.microsoft.com/fi-fi/ff380145
  23. App Hub, develop for Windows Phone:
  24. http://create.msdn.com
  25. Silverlight Control Customization:
  26. http://msdn.microsoft.com/en-us/library/cc278068%28v=VS.95%29.aspx
  27. IMPORTANT FILES/CLASSES
  28. -------------------------------------------------------------------------------
  29. MainPage.xaml.cs: Class responsible for displaying the pivot view of the
  30. application.
  31. WeeklyGrid.cs: Custom control based on System.Windows.Controls.Control. Describes
  32. the view of a single day.
  33. EventViewModel.cs: View model class describing a single event saved by the
  34. user.
  35. MainViewModel.cs: View model class responsible for loading event data from
  36. disk and maintaining clipboard.
  37. WeeklyEvent.cs: Custom control based on System.Windows.Controls.Button that
  38. visualises a single event saved by the user in the grid of a single day.
  39. Important classes:
  40. * System.Windows.Controls.Control
  41. * System.Windows.Controls.Button
  42. * System.Windows.Controls.Grid
  43. * Microsoft.Phone.Controls.Pivot
  44. KNOWN ISSUES
  45. -------------------------------------------------------------------------------
  46. None.
  47. BUILD & INSTALLATION INSTRUCTIONS
  48. -------------------------------------------------------------------------------
  49. Preparations
  50. ~~~~~~~~~~~~
  51. Make sure you have the following installed:
  52. * Windows 7 or Windows Vista, may also work on Windows XP
  53. * Windows Phone SDK 7.1:
  54. http://go.microsoft.com/?linkid=9772716
  55. * Silverlight Toolkit for Windows Phone 7.1 SDK Development:
  56. http://silverlight.codeplex.com/
  57. Build on Microsoft Visual Studio
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. 1. Open the SLN file:
  60. File > Open Project, select the file wpweeklyplanner.sln.
  61. 2. Add reference to Silverlight Toolkit:
  62. Right-Click on project in Solution Explorer > Add reference... > Select
  63. Microsoft.Phone.Controls.Toolkit under .NET > Press OK
  64. 3. Select the target 'Windows Phone Emulator'.
  65. 4. Press F5 to build the project and run it on the Windows Phone Emulator.
  66. Deploy to Windows Phone 7
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~
  68. Please see official documentation for deploying and testing applications on
  69. Windows Phone devices:
  70. http://msdn.microsoft.com/en-us/library/gg588378%28v=vs.92%29.aspx
  71. COMPATIBILITY
  72. -------------------------------------------------------------------------------
  73. - Windows Phone 7
  74. Tested on:
  75. - Samsung Omnia 7
  76. Developed with:
  77. - Microsoft Visual Studio 2010 Express for Windows Phone
  78. LICENSE
  79. -------------------------------------------------------------------------------
  80. Please see the license file:
  81. Licence.txt
  82. CHANGE HISTORY
  83. -------------------------------------------------------------------------------
  84. 1.2.0 Bug fixes and changes based on reviews
  85. 1.1.0 Bug fixes and changes based on reviews; published on the Nokia Developer
  86. website
  87. 1.0.1 Support for Windows Phone OS version 7.1
  88. 1.0.0 First version