Blog

技术文章

这里收录站点的文章正文,覆盖 .NET、桌面开发、工程实践与通用开发话题。

First Visit

新用户起步路线

Unexpected Finds

随机发现

随机发现

(14/30) Everyone learn Blazor together: JavaScript interop

Although Blazor does not require JavaScript, some existing js libraries are still very convenient and cannot be abandoned just because you don't want to use JavaScript. Blazor provides a method to call JavaScript. This situation is called JavaScript interoperability(abbreviated as JavaScript interop). This article will implement the reminder window of the Delete button, because deletion is a very important function and cannot be easily deleted by users with a single press.

Blazor
WPF's noteworthy IsHitTestVisible

WPF's noteworthy IsHitTestVisible

This property is set to false, which does not seem to have changed, but it has been completely ignored in operation. You can click directly on what is underneath it without triggering an event.

10/20/2021 普通的地球人 WPF
Data binding expressions in WPF

Data binding expressions in WPF

Data binding is a powerful technology that allows data to flow between UI elements and business models. When data changes in the business model, it automatically reflects the changes to UI elements.

10/18/2021 Swati Gupta WPF
WPF implements exception-isolated clients through multiple processes

WPF implements exception-isolated clients through multiple processes

When a WPF client needs to implement a plug-in system, it can generally be implemented based on a container or process. If you need to isolate exceptions from external plug-ins, you can only use child processes to load the plug-in. In this way, if the plug-in throws exceptions, it will not affect the main process.

9/22/2021 鹅群中的鸭霸 WPF