mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
28 lines
604 B
C#
28 lines
604 B
C#
using System;
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace Cosmos.VS.Windows
|
|
{
|
|
public class ToolWindowPane2 : ToolWindowPane
|
|
{
|
|
public event EventHandler UpdateWindow;
|
|
|
|
public sealed override object Content
|
|
{
|
|
get => base.Content;
|
|
set => base.Content = value;
|
|
}
|
|
|
|
public DebuggerUC UserControl => Content as DebuggerUC;
|
|
|
|
public ToolWindowPane2()
|
|
: base(null)
|
|
{
|
|
}
|
|
|
|
protected virtual void OnUpdateWindow(EventArgs e)
|
|
{
|
|
UpdateWindow?.Invoke(this, e);
|
|
}
|
|
}
|
|
}
|