# WPF 學習筆記 這篇主要會針對 **WPF ( 也就是Windows Presentation Foundation )** 進行講解,利用 Visual studio 開發 ==桌面用戶端應用程式的 UI== :::success 我學習的資料來源是下面這個,微軟的 [傳送門](https://learn.microsoft.com/zh-tw/visualstudio/get-started/csharp/tutorial-wpf?view=vs-2022) ::: ### About WPF --- []() ### IDE --- [Visual studio ( for WPF )]() ### Program boilerplate --- WPF 不像傳統 C++ 或 Console 應用程式會有 int main(),而是以 ==XAML + C#== 的形式結合,透過 ==App.xaml / App.xaml.cs== 作為入口點。 所以,WPF 的 boilerplate code 通常包含以下幾個檔案與內容: