2016-05-29 [C#][WPF]解決使用Frame填入Page後,Page的大小無法填滿整個Frame 532 0 當切換頁面後,Page顯示在Frame的中央,無法填滿整個Frame時,如何使Page能依Frame的大小自動縮放並填滿整個Frame? 解決方法是: 將Page的長與寬設為非數字即可,如下: public class Page1 { public Page1() { this.Width = double.NaN; this.Height = double.NaN; } } C#WPF 回首頁