2015-06-11 06:19:17 +02:00
|
|
|
|
/**
|
|
|
|
|
|
******************************************************************************
|
|
|
|
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
|
|
|
|
******************************************************************************
|
|
|
|
|
|
* Copyright 2015 Ben Vanik. All rights reserved. *
|
|
|
|
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
|
|
|
|
******************************************************************************
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
2015-05-03 19:25:16 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Windows.Forms;
|
2015-05-22 23:58:56 +02:00
|
|
|
|
using WeifenLuo.WinFormsUI.Docking;
|
2015-05-03 19:25:16 +02:00
|
|
|
|
|
2015-05-22 23:58:56 +02:00
|
|
|
|
namespace Xenia.Debug.UI.Controls {
|
|
|
|
|
|
public partial class BasePanel : DockContent {
|
2015-06-09 06:12:40 +02:00
|
|
|
|
public static MainWindow MainWindow;
|
|
|
|
|
|
|
2015-05-22 23:58:56 +02:00
|
|
|
|
public BasePanel() {
|
2015-05-10 02:48:12 +02:00
|
|
|
|
InitializeComponent();
|
2015-05-03 19:25:16 +02:00
|
|
|
|
}
|
2015-05-10 02:48:12 +02:00
|
|
|
|
}
|
2015-05-03 19:25:16 +02:00
|
|
|
|
}
|