瀏覽代碼

API docsz'

Tig 1 年之前
父節點
當前提交
3e8d91670e
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      Terminal.Gui/Input/ICommandContext.cs

+ 4 - 2
Terminal.Gui/Input/ICommandContext.cs

@@ -2,9 +2,11 @@
 namespace Terminal.Gui;
 
 /// <summary>
-///     Describes the context in which a <see cref="Command"/> is being invoked. When a <see cref="Command"/> is invoked,
-///     a context object is passed to Command handlers. See <see cref="View.AddCommand(Command, CommandImplementation)"/>.
+///     Describes the context in which a <see cref="Command"/> is being invoked. <see cref="CommandContext{TBindingType}"/> inherits from this interface.
+///     When a <see cref="Command"/> is invoked,
+///     a context object is passed to Command handlers as an <see cref="ICommandContext"/> reference.
 /// </summary>
+/// <seealso cref="View.AddCommand(Command, CommandImplementation)"/>.
 public interface ICommandContext
 {
     /// <summary>