Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a utility similar to Twitter Bootstrap/Foundation5 for WPF files in Visual Studio? [closed]

I am learning C# and the .NET framework. I have experience in Web Development. I was just introduced to WPF files, and the drag and drop 'toolbox'. It seems pretty cumbersome to drag and drop elements and then resize them to look 'pretty' in the application with proper spacing, alignment, etc...

I do not have an eye for making the layout nice, and formatted in an appealing way.

Question: Is there a tool similar to Twitter Bootstrap, or Foundation for constructing WPF files? Or a template builder I can use to create layouts for my WPF file? Or use pre-made "pretty" layouts for my WPF file?

like image 592
jward01 Avatar asked Sep 29 '15 16:09

jward01


3 Answers

I think you are looking something like Modern UI for WPF. This open source project provides nice looking layout with beautiful controls.

A set of controls and styles converting your WPF application into a great looking Modern UI app. This open source project is a spin-off of XAML Spy, the visual runtime inspector for Silverlight, Windows Phone, Windows Store and WPF.

like image 83
Sam FarajpourGhamari Avatar answered Sep 22 '22 13:09

Sam FarajpourGhamari


You can apply styles on the WPF controls. It will work like CSS.

http://www.wpf-tutorial.com/styles/using-styles/ http://www.codeproject.com/Articles/18388/A-Guided-Tour-of-WPF-Part-Styles

Also you can edit any template, for example a TextBox. Click in your control, right mouse button, then Edit Template.

I use MahApps(http://mahapps.com/) that provides styles and controls to make Metro UI, making your application looks very nice.

like image 22
Murilo Avatar answered Sep 21 '22 13:09

Murilo


I am also beginner in WPF as are you. In My opinion you can use templates for WPF. What Bootstrap provide is java script and CSS for a web project. In WPF we use Resource Dictionaries and Template basically provides it. I use Metro Template for my WPF projects.
May be you find this link helpful - mahapps.com

like image 28
Ashok Rayal Avatar answered Sep 22 '22 13:09

Ashok Rayal