From 08ab60ef58312c337f665a8ea490b446e46859ca Mon Sep 17 00:00:00 2001 From: test Date: Sun, 23 Aug 2020 18:32:23 +0900 Subject: [PATCH] =?utf8?q?=E6=94=B9=E8=A1=8C=E3=82=92=E5=B8=B8=E3=81=AB?= =?utf8?q?=E8=A1=A8=E7=A4=BA=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= =?utf8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- UWP/Test/MainViewModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UWP/Test/MainViewModel.cs b/UWP/Test/MainViewModel.cs index b256439..310c8a6 100644 --- a/UWP/Test/MainViewModel.cs +++ b/UWP/Test/MainViewModel.cs @@ -62,6 +62,7 @@ namespace Test doc.AutoComplete = new AutoCompleteBox(doc); doc.AutoComplete.Items = complete_collection; doc.AutoComplete.Enabled = true; + doc.ShowLineBreak = true; MainViewModel._list.Add(doc); doc = new Document() { Title = "test2" }; @@ -82,6 +83,7 @@ namespace Test if (file != null) { var doc = new Document() { Title = "test" + MainViewModel._list.Count }; + doc.ShowLineBreak = true; using (var ws = await file.OpenAsync(FileAccessMode.Read)) using (var fs = new StreamReader(ws.AsStream())) { -- 2.11.0