Revision: | 440 |
Committed: | Tue May 28 19:10:10 2013 UTC (10 years, 4 months ago) by william |
File size: | 446 byte(s) |
Log Message: | + add support to usercontrol plugins to dock the controls on the form |
# | Content |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.ComponentModel; |
4 | using System.Data; |
5 | using System.Drawing; |
6 | using System.Linq; |
7 | using System.Text; |
8 | using System.Windows.Forms; |
9 | using WeifenLuo.WinFormsUI.Docking; |
10 | |
11 | namespace RomCheater.CheatPlugin |
12 | { |
13 | public partial class CheatCodeDockContent : DockContent |
14 | { |
15 | public CheatCodeDockContent() |
16 | { |
17 | InitializeComponent(); |
18 | } |
19 | } |
20 | } |