forked from Krypton-Suite/Standard-Toolkit-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
31 lines (27 loc) · 774 Bytes
/
Form1.cs
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
31
#region BSD License
/*
*
* Original BSD 3-Clause License (https://github.com/ComponentFactory/Krypton/blob/master/LICENSE)
* © Component Factory Pty Ltd, 2006 - 2016, (Version 4.5.0.0) All rights reserved.
*
* New BSD 3-Clause License (https://github.com/Krypton-Suite/Standard-Toolkit/blob/master/LICENSE)
* Modifications by Peter Wagner(aka Wagnerp) & Simon Coghlan(aka Smurf-IV), et al. 2017 - 2023. All rights reserved.
*
*/
#endregion
using System;
using Krypton.Toolkit;
namespace AutoShrinkingGroups
{
public partial class Form1 : KryptonForm
{
public Form1()
{
InitializeComponent();
}
private void appMenu_Click(object sender, EventArgs e)
{
Close();
}
}
}