yanlinlin

Results 33 comments of yanlinlin

Hi, @maxkatz6 . Sorry to bother you but I have the same issue . And I found it affects all ItemsControl. For example, add a behavior to `Avalonia.Xaml.Behaviors\samples\BehaviorsTestApplication\Views\Pages\EditableListBoxView.axaml` (See full...

用这种方式是否可行? https://stackoverflow.com/a/11191070/10231865 ``` int timeout = 1000; var task = SomeOperationAsync(cancellationToken); if (await Task.WhenAny(task, Task.Delay(timeout, cancellationToken)) == task) { // Task completed within timeout. // Consider that the task may...

![image](https://user-images.githubusercontent.com/16819902/218249249-460a8f76-0ee5-4469-a063-e05c257be2e5.png) You can try performance counter.

@Commifreak Try execute `lodctr /R` in cmd (need admin rights) then the performance counter could have value.

You can merge markdown first then print to pdf.

但讲道理,任务管理器还真不行,得看资源监视器

把“设置-常规设置-CPU使用率获取方式”改成“使用性能计数器”应该就可以了,但“基于CPU使用时间”的方式倒是更接近ProcessExplorer显示的利用率,所以我觉得更准一些

I havn't test Styles, DataTemplates or Controls and don't know if this can occur to any xaml file. Currently the workaround is spliting the ResourceDictionary to two parts. Anyway, if...

😂Yes it's unusual. I have over a hundred DrawingImages in the ResourceDictionary. They are converted from svg and sometimes can be very long.

I tried the 11.1.0-rc1 and found it is better but still has some issue. Here is the steps: * Create new project using `dotnet new avalonia.xplat -n XamlErrorTest -rvl true...