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