Navigation Between MainPage and ViewEdit Pages - Day 4 - Part 10

In this video Bob uses previously discussed techniques to switch back and forth between view and edit modes by copying the content from the TextBlock to the TextBox before setting the visibility of each control. Finally, the data changes are applied to the underlying file.
Download the source code in c#
Download the source code in VB.Net
Hi bob,
I noticed that you use two different ways of creating file:
- appStorage.OpenFile(fileName, FileMode.Create)
- appStorage.CreateFile(fileName)
Any significant difference between the two?
@kctan: The 2nd one only creates a file. OpenFile with FileMode.OpenOrCreate will either open it if it is there or will create a new file for you. Just makes your code a lot cleaner.