Wang Bo

Results 9 comments of Wang Bo

Same here, the default keyboard on Android is not usable so I am trying to combining customized virtual keyboard with this. However, virtual keyboard (such as KioskBoard) expose event handlers...

Actually by adding JavaScript code that creates virtual keyboard to the webpage or put the original webpage containing xterm.js in an iframe, it is working on android chrome. No need...

谢谢回复!在UWP中通常没有读写任意路径的权限,只能访问特定的路径(可读写访问应用数据路径**~\AppData\Local\Packages\程序包标识\LocalState**,可只读访问应用安装路径**C:\Program Files\WindowsApps\程序包标识\**)。这些路径可从运行时常量访问,例如应用数据路径可从常量 ApplicationData.Current.LocalFolder得到。 的一段从AppData中的LocalState读取文件代码的例子如下: ```csharp StorageFolder _storageFolder = ApplicationData.Current.LocalFolder; Stream fs = await _storageFolder.OpenStreamForReadAsync("Cookie.txt") as Stream; StreamReader sw = new StreamReader(fs); string content = await sw.ReadToEndAsync(); sw.Dispose(); fs.Dispose(); ``` 此外,对于必须通过url获取本地文件的情形(一些控件的src,WebView内部),可以访问UWP应用的安装路径,如:...

I know how to solve the Unable to find problem, but even if you build successfully, you will still not be able to launch C# kernel. Too many bugs! I...

the 'Unable to find version '1.9.2' of package 'xunit.runners'' is because of the old Nuget.exe in subfolder Engine/.nuget is broken. It should be replaced by a usable one. I copied...

是否可以换一个ID发布在线版本呢

我也非常需要这个,经常要把 {"status": "on"} 这种转义为 "{\\"status\": \\"on\\"}", 可否支持这种呢?

+1 hope to use this `matches` API, but currently not implemented.