浏览代码

Add caption to CharacterMap scenario

Thomas 2 年之前
父节点
当前提交
38b890ea88
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      UICatalog/Scenarios/CharacterMap.cs

+ 1 - 1
UICatalog/Scenarios/CharacterMap.cs

@@ -35,7 +35,7 @@ namespace UICatalog.Scenarios {
 
 			var jumpLabel = new Label ("Jump To Glyph:") { X = Pos.Right (_charMap) + 1, Y = Pos.Y (_charMap) };
 			Win.Add (jumpLabel);
-			var jumpEdit = new TextField () { X = Pos.Right (jumpLabel) + 1, Y = Pos.Y (_charMap), Width = 10, };
+			var jumpEdit = new TextField () { X = Pos.Right (jumpLabel) + 1, Y = Pos.Y (_charMap), Width = 10, Caption = "e.g. 01BE3"};
 			Win.Add (jumpEdit);
 			var unicodeLabel = new Label ("") { X = Pos.Right (jumpEdit) + 1, Y = Pos.Y (_charMap) };
 			Win.Add (unicodeLabel);