| Can we create WPF application without XAML and what is the use of XAML
Yes, we can do this on both way with XAML and without XAML with the help of code. Now question come why we use XAML and its benefits in XAML we can create and initialie objects. Below are the benefits of XAML in WPF.
(1)XAML code is short and easy to read
(2)This will separate the designer code and logic
(3)This separation of XAML from Userinterface logic helps designer and developer both to clearly do there work
(4)Graphical design tools like Expression Blend require XAML as source. | | |