Reputation: 1727
How in Xamarin Forms, can I visually layout and create a form. Like you do in WPF , WinForms etc.. etc... in VS and everyother IDE. Do I alway have to hand-jam the XAML? Seems so absurd.
thanks in advance and have a great coding day
Upvotes: 1
Views: 659
Reputation: 16199
There is no Visual Designer, that has drag and drop functionality. You must code all views in either XAML or C#. (Preferably XAML).
The options you do have, is to view the XAML you are creating in real time, after you have typed it.
Give it a few weeks of writing XAML and it gets much easier.
Upvotes: 1