mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
28 lines
No EOL
625 B
C#
28 lines
No EOL
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace Cosmos.VS.Windows
|
|
{
|
|
public class ToolWindowPaneChannel : ToolWindowPane
|
|
{
|
|
public event EventHandler UpdateWindow;
|
|
|
|
protected DebuggerChannelUC mUserControl;
|
|
|
|
public DebuggerChannelUC UserControl => mUserControl;
|
|
|
|
public ToolWindowPaneChannel()
|
|
: base(null)
|
|
{
|
|
}
|
|
|
|
protected virtual void OnUpdateWindow(EventArgs e)
|
|
{
|
|
UpdateWindow?.Invoke(this, e);
|
|
}
|
|
}
|
|
} |