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