added samples
[windows-sources.git] / sdk / samples / WPFSamples / PointSample / csharp / app.xaml.cs
blob3ce8e7a5ad0dedccefa27a73caf31c59256beb9b
1 using System;
2 using System.Windows;
3 using System.Data;
4 using System.Xml;
5 using System.Configuration;
7 namespace PointSample
9 /// <summary>
10 /// Interaction logic for app.xaml
11 /// </summary>
13 public partial class app : Application
15 void AppStartingUp(object sender, StartupEventArgs e)
17 Window1 mainWindow = new Window1();
18 mainWindow.Show();
20 //Displays the values of the variables that will be used
21 mainWindow.ShowVars();