/Release/Silverlight4/SampleSource/Controls.Samples/Navigation/Page1.xaml.cs
# · C# · 26 lines · 13 code · 3 blank · 10 comment · 0 complexity · 6cc5243337ebbecb7ea0509099332d1f MD5 · raw file
- // (c) Copyright Microsoft Corporation.
- // This source is subject to the Microsoft Public License (Ms-PL).
- // Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
- // All other rights reserved.
-
- using System.Linq;
- using System.Windows.Navigation;
-
- namespace System.Windows.Controls.Samples
- {
- /// <summary>
- /// A Page that displays an image to which a frame can navigate.
- /// </summary>
- public partial class Page1 : Page
- {
- /// <summary>
- /// Initializes a Page1.
- /// </summary>
- public Page1()
- {
- InitializeComponent();
-
- DataContext = Photograph.GetPhotographs().First().Image;
- }
- }
- }