- Mastering Visual Studio 2017
- Kunal Chowdhury
- 157字
- 2021-07-15 17:26:41
Types of WPF applications
WPF applications can be of two types: desktop-based applications and web-based applications. The desktop applications are normal .EXE executables, whereas the web-based browser applications are the .XBAP files which can be deployed in web servers and run inside any supported browser. The .NET framework is mandatory to run any of these application outputs.
Each WPF application starts with two threads. The UI thread uses System.Threading.DispatcherObject to create the messaging system to maintain the queue of UI operations. Just like Win32 message pumping, it performs the UI operation sorted by the priority set to it. The other thread is the background thread to handle the rendering engine, which is being managed by WPF. It picks up a copy of the visual tree and performs action to show the visual components in the Direct 3D surface. After that, it calls all UI elements to determine the size and arranges the child elements by their parents.
- Azure IoT Development Cookbook
- 動手玩轉(zhuǎn)Scratch3.0編程:人工智能科創(chuàng)教育指南
- PHP+MySQL+Dreamweaver動態(tài)網(wǎng)站開發(fā)實例教程
- JavaScript 程序設計案例教程
- 自然語言處理Python進階
- Visual Foxpro 9.0數(shù)據(jù)庫程序設計教程
- Node.js 12實戰(zhàn)
- FPGA嵌入式項目開發(fā)實戰(zhàn)
- 從0到1:HTML5 Canvas動畫開發(fā)
- Python網(wǎng)絡爬蟲實例教程(視頻講解版)
- 現(xiàn)代CPU性能分析與優(yōu)化
- Applied Deep Learning with Python
- 你真的會寫代碼嗎
- Head First Kotlin程序設計
- Swift從入門到精通 (移動開發(fā)叢書)