OSDN Git Service

ファイル読み込み後の再描写はすぐ行わなくても構わない
authortest <test@yahoo.co.jp>
Sun, 23 Aug 2020 07:35:30 +0000 (16:35 +0900)
committertest <test@yahoo.co.jp>
Sun, 23 Aug 2020 07:35:30 +0000 (16:35 +0900)
UWP/FooEditEngine.UWP/FooTextBox.cs

index 8a37743..71da92f 100644 (file)
@@ -368,7 +368,7 @@ namespace FooEditEngine.UWP
                 if (this.verticalScrollBar != null)
                     this.verticalScrollBar.Maximum = this.View.LayoutLines.Count;
                 this.IsEnabled = true;
-                this.Refresh(this.View.PageBound);
+                this.Refresh(false);
             }
         }