PageRenderTime 40ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/Samples/ExampleToolWPF/App.xaml.cs

#
C# | 13 lines | 7 code | 1 blank | 5 comment | 0 complexity | 401e23826f96cad7fb2ce780b944b4b3 MD5 | raw file
Possible License(s): Apache-2.0
  1. using System.Windows;
  2. namespace Delta.Tools.ExampleToolWPF
  3. {
  4. /// <summary>
  5. /// Starting point for the ExampleToolWPF, you can put a OnStartup event here
  6. /// to do some initialization code (e.g. check if the application is already
  7. /// running with WindowsApplication.MakeSureAppIsNotAlreadyRunning).
  8. /// </summary>
  9. public partial class App : Application
  10. {
  11. }
  12. }