I mean, as a normal developer, is there something that I will achieve with Expression Blend that I won't using VS? I have no idea of Expression Blend and at first sight didn't look very friendly / easy to learn.

What do you thing out there? It's worth the time learning to use it or I will do the same as I do with VS?

Thanks!

EDIT: I know what Microsoft says about the tools. What I want to know is if you, as a developer like me, tried Expression Blend and found that it was a waste of time or you thought it was a good tool and you stopped developing the WPF GUIs from VS and switched to EB.

link|improve this question

79% accept rate
3  
Would like to know why someone voted me down. I think the question is clear and makes sense. Read the site recommendations, when you downvote you should comment why. – SoMoS Sep 22 '11 at 16:00
I wonder who voted it up. No comment there either. – Henk Holterman Sep 22 '11 at 16:04
1  
@Henk: Anyway you're asked to comment only downvotes. – SoMoS Sep 22 '11 at 16:06
Well, as far as I know I was asking for specific expertise ... but who cares ... at least I have the answers of some good guys. – SoMoS Sep 22 '11 at 16:15
1  
I think with a bit better formulation this could be an interesting question. In essence it's "When is it useful to use Expression Blend when you know how to work with WPF GUIs in VS". – CodeInChaos Sep 22 '11 at 16:17
show 1 more comment
feedback

5 Answers

up vote 19 down vote accepted

I have it and rarely use it.

I greatly dislike all the extra markup that gets added to the XAML files, and prefer to know what I'm doing to just dragging/dropping items.

The few times I have used it have been to pull out the default styles or templates of a control, or to build something like a gradient, animation, or path, and then copy/paste the XAML into my project.

It's nice if you're into drag/drop coding, or if you're working on a large enough team to be have a separate UI and Coding team, but other than that I don't use it for solo development since I have to maintain the XAML mess it generates.

link|improve this answer
Thanks for your comments. Just what I was looking for. – SoMoS Sep 22 '11 at 16:13
Out of curiosity, why the down vote? – Rachel Sep 23 '11 at 11:55
1  
Well said. I give Expression Blend a long try and read a book that is supposedly for programmers and not designers. Yet, after a short while I gave up. Expression Blend is fine for the little tasks Rachel described. However, when it comes to actual programming, binding and such, it is really bad. – VitalyB Sep 23 '11 at 16:46
1  
Good response and same experience here. Dropped Expression Blend when my project became a little complex and Blend starting complaining about importing projects and resources. For all new interfaces, we use Visual Studio. – e28Makaveli Sep 23 '11 at 17:59
1  
I would like to comment that I agree with all that Rachel said, but in addition, I have found that where Blend excels is in two areas, Animations and Templating. I don't think you can view Templates (of any kind really) in VS, but in Blend you can, and that is the what they call the bomb-bizzle. Simple animations can be done in VS. Color changes and margin animations and what not. Anything that has objects moving around, especially if it is not a straight line, I totally use Blend. The Animation designer allows for a lot of flexibility and plays the animations for you. – CodeWarrior Dec 8 '11 at 17:15
show 2 more comments
feedback
  1. It's much easier to edit default styles as you have option Edit a copy which is extracting default style into the new one and you can change it
  2. I find also very useful to edit additional styles like generated content as you can easly see what additional styles control has.
  3. If you are doing animations it can make a difference as you can actually see during desgin time how is it behaving
  4. If you have a dedicated designer in your team it is much more friendly for them as it's similar to photoshop/flash editing software
  5. From my point of view if you are working in a team its enough to have only few expression blends
link|improve this answer
No, I'm working as a freelance developer so I would be the only one to use it or not. I plan to use animations but really simple, just to difference my GUIs from the others. – SoMoS Sep 23 '11 at 8:16
1  
sure it is possible to do the job without this tool especially if you need to learn new tool there is also one more advantage my visual studio is crashing a lot with huge xaml styles and blend is not but this could be resharpers fault – baalazamon Sep 23 '11 at 8:22
1  
DataContext Panel is also very useful, especially in mvvm scenarios, you can drag and drop ViewModel Properties or Commands; – JackNova Sep 28 '11 at 19:25
feedback

I always have Expression Blend open next to Visual Studio and switch back and forth between the two when working on Silverlight, WPF or Windows Phone Projects. These are my main resons:

I use a lot of animations and visual states in my applications. To create these you would like to see what is going on. In the visual studio you can't (yet). It's almost impossible to write a real animation or visual state by hand.

Managing resources is something I use Expression Blend for too. Creating new dictionaries and moving resources around is very easy in Blend. It even notifies you when you try to delete a resouce you are using in some place. Finding and editing a resouce is very easy. With a click of a button a property is converted to a resource and ready for use in other places.

One other thing I use a lot is Sample Data. I would like to see my forms and lists filled with data when creating them. Depending on the state of the application I create sample data by hand, use an xml export from the database or generate sample data from code.

Databinding becomes a lot easier when you are using sample data. Just drag'n'drop the property on a textbox and you'll have a binding. Through the databinding editor you can finetune the binding the way you want.

link|improve this answer
Are you a developer or a designer? Mmm, at the end I think I will give it sometime only when I become stuck into something or have spare time. – SoMoS Sep 23 '11 at 8:20
I'm a developer, although I have some experience in design. – Sorskoot Sep 23 '11 at 8:29
I see, I just have some knowledge with Photoshop :) No idea of Flash or designers tools. This is why I'm concerned about learning it or not. Thanks! – SoMoS Sep 23 '11 at 9:35
feedback

I stopped developing GUIs in VS and switched to Blend. It was very confusing at first, but I'm now glad I took the time to learn Blend. Most things that you can do in Blend can be done in Visual Studio, but Blend makes them much easier (once you learn how to do it). I constantly astound my fellow developers when I show them how to do something in Blend because a simple drag and drop can replace quite a bit of typing. The thing I really like about Blend is that the design surface is accurate while the Cider WPF designer in Visual Studio often lies to you or misleads you (and is just a piece of crap in general).

Blend can do the following things that Visual Studio cannot:

  1. Create and manage visual states. (I guess you could do this all by hand in VS, but that's just insane for anything even moderately complex.)
  2. Extract and modify control templates.
  3. Easily work with behaviors (I can't imagine doing a FluidMoveBehavior by hand in VS).
  4. Generate sample data for use at design time (reduces coupling of your software components).
  5. WYSIWYG animation editor. (In VS you have to run the application to see the animations; Blend gives you live previews.)
  6. Built in transition effects and easing functions.
  7. SketchFlow (great for making a high fidelity mockup that you can show a client/stakeholder).
  8. WYSIWYG path editor (great for doing simple vector artwork).
  9. WYSIWYG gradient editor.
  10. Import artwork from Photoshop and Illustrator.

These are the sorts of things that can really set your user experience apart from every other freelancer out there. And for the record I'm a developer with no design experience.

link|improve this answer
Thanks for sharing. I actually don't use what you mention (even more, I don't know what's a visual state nor a behaviour) :) – SoMoS Sep 28 '11 at 20:27
This blog gives some good background on visual states and what you can do with them in Blend: blogs.msdn.com/b/expression/archive/2010/03/16/… . Googling for "Blend Behaviors" should give you some good results. If you're writing XAML and not using behaviors, you're probably doing something suboptimally. (Don't be fooled: Blend Behaviors are part of the free Blend SDK and do not require Blend to be installed.) – Mike Post Sep 29 '11 at 0:36
feedback

When the Visual Studio is more oriented on the developers, Expression Blend is oriented to the designers. It have a lot of predefiend tools whitch can generate a lot of code and simple to use (espessially animations, design issues, etc.). So everything what can be done in Expression Blend you can do in Visual Studio. I'm not sure about viсe-versa.

Here is what said on official site:

Expression Blend, Visual Studio, Silverlight and .NET provide the most compelling and seamless design and development workflow on the market today. Rapidly iterate on both the user experience and core architecture, evolving your ideas quickly from initial prototype through to completed project.

Key components of Expression Blend, including Behaviors, Visual State Manager, transition effects, and SketchFlow (Expression Blend 4 includes SketchFlow in Expression Studio 4 Ultimate product only), coupled with the speed and flexibility of this modern workflow challenge you to push boundaries and work beyond the limits of what you thought possible.

So, it depends on where you are: if you mostly working with the UI layer of the application you may found a lot of useful things in Expression Blend, otherwise if you mostly work with backgound - Visual Studio is your choiсe.

Update

Also check out following tread on SO: WPF Applications: Visual Studio vs. Expression Blend

link|improve this answer
Are you using it? And are you a developer or a designer? – SoMoS Sep 22 '11 at 16:03
I'm developer, but when I was working on the UI staff of WPF project - I was cheating :). I apply some effects, made some gradients, animations and so on and then just copy generated code to the Visual Studio :) – Samich Sep 22 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.