microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
78c691a1dc6954d7bec8ba6b3df51daf1480fffe

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/visualStudioTypeAgent/ChatToolWindow.cs

17lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4using System.Runtime.InteropServices;
5using Microsoft.VisualStudio.Shell;
6
7namespace Microsoft.TypeAgent.VisualStudio;
8
9[Guid("d3b40faa-9d75-4f4f-be3b-bf3f4c5f7023")]
10public class ChatToolWindow : ToolWindowPane
11{
12 public ChatToolWindow() : base(null)
13 {
14 Caption = "TypeAgent Chat";
15 Content = new ChatToolWindowControl();
16 }
17}
18