What is the difference between a Page and a Window in WPF when you are adding a new file in the Solution Explorer?
C# – Page vs Window in WPF
c++wpf
Related Question
- C# – Deep cloning objects
- .net – How to use WPF bindings with RelativeSource
- .net – What’s the difference between StaticResource and DynamicResource in WPF
- C# – What are the correct version numbers for C#
- C# – Case insensitive ‘Contains(string)’
- C# – Difference Between Select and SelectMany
- C# – Returning IEnumerable
vs. IQueryable - C# – AddTransient, AddScoped and AddSingleton Services Differences
Best Solution
Pages are intended for use in Navigation applications (usually with Back and Forward buttons, e.g. Internet Explorer). Pages must be hosted in a NavigationWindow or a Frame
Windows are just normal WPF application Windows, but can host Pages via a Frame container