added samples
[windows-sources.git] / sdk / samples / WPFSamples / ReusableCustomApplicationSample / csharp / customapplicationlibrary / customapplication.cs
blobc34b49ac405ccacbc4b00e59ea72b630af9536d6
1 using System;
2 using System.Windows;
4 namespace CustomApplicationLibrary
6 public class CustomApplication : Application
8 protected override void OnStartup(StartupEventArgs e)
10 base.OnStartup(e);
11 MessageBox.Show("Hello, reusable custom application!");