浏览代码

Tweaked api docs

Tigger Kindel 2 年之前
父节点
当前提交
cb9ce86511
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      Terminal.Gui/Core/View.cs

+ 4 - 3
Terminal.Gui/Core/View.cs

@@ -15,13 +15,14 @@ namespace Terminal.Gui {
 	/// </summary>
 	public enum LayoutStyle {
 		/// <summary>
-		/// The position and size of the view are based on the Frame value.
+		/// The position and size of the view are based <see cref="View.Frame"/>. 
 		/// </summary>
 		Absolute,
 
 		/// <summary>
-		/// The position and size of the view will be computed based on the
-		/// X, Y, Width and Height properties and set on the Frame.
+		/// The position and size of the view will be computed based on 
+		/// <see cref="X"/>, <see cref="Y"/>, <see cref="Width"/>, and <see cref="Height"/>. <see cref="View.Frame"/> will
+		/// provide the absolute computed values.
 		/// </summary>
 		Computed
 	}