-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathApp.xaml.cs
More file actions
30 lines (24 loc) · 775 Bytes
/
App.xaml.cs
File metadata and controls
30 lines (24 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#region Copyright
///////////////////////////////////////////////////////////////////////////////
// File: App.cs
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) KGy SOFT, 2005-2026 - All Rights Reserved
//
// You should have received a copy of the LICENSE file at the top-level
// directory of this distribution.
//
// Please refer to the LICENSE file if you want to use this source code.
///////////////////////////////////////////////////////////////////////////////
#endregion
#region Usings
using System.Windows;
#endregion
namespace KGySoft.Drawing.Examples.SkiaSharp.Wpf
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}