mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.Design;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using System.Windows.Threading;
|
|
using Cosmos.Debug.Consts;
|
|
using Microsoft.VisualStudio.Shell;
|
|
using Microsoft.VisualStudio.Shell.Interop;
|
|
|
|
namespace Cosmos.VS.Windows {
|
|
[Guid("39A8D0A0-26A3-4234-A660-0C4C8BF40FF3")]
|
|
public class InternalTW : ToolWindowPane2 {
|
|
public InternalTW() {
|
|
Caption = "Cosmos Internal";
|
|
|
|
BitmapResourceID = 301;
|
|
BitmapIndex = 1;
|
|
|
|
mUserControl = new InternalUC();
|
|
Content = mUserControl;
|
|
}
|
|
}
|
|
|
|
public partial class InternalUC : DebuggerUC {
|
|
public InternalUC() {
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|