Controls-ReaderPanel icon indicating copy to clipboard operation
Controls-ReaderPanel copied to clipboard

Reading control made for UWP, theoretically supports TXT and Epub

Results 2 Controls-ReaderPanel issues
Sort by recently updated
recently updated
newest added

大佬好,最近发现了一个比较奇怪的issue (也可能是我使用的问题) 如果使用FilePicker然后再Reader.OpenAsync(file, new ReaderStyle());不会报错,但是如果打开LocalState下的Books文件夹里的书就会报错。 报错内容 ``` System.NullReferenceException:“Object reference not set to an instance of an object.” ``` 这样就没问题 ```C# StorageFile file = await App._instance.IO.OpenLocalFileAsync(".txt", ".epub"); await Reader.OpenAsync(file, new ReaderStyle());...