Designers and developers working together - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:53:01Zhttp://stackoverflow.com/feeds/question/51624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/51624/designers-and-developers-working-together19Designers and developers working togetherAsh2008-09-09T11:16:47Z2009-04-08T16:58:15Z
<p>The rich presentational capabilities of WPF and Silverlight mean developers like me will be working closely with graphic designers more often these days, as is the case in my next project. </p>
<p>Does anyone out there have any tips/experience (from both points of view) on making this go more smoothly? For example when I mentioned source control to a designer recently I was told you can't source control graphics, images etc, so it is a waste of time. But what about XAML files in WPF/Silverlight? </p>
<p>Scott Hanselman spoke about this topic in a <a href="http://www.hanselminutes.com/default.aspx?showID=138" rel="nofollow">podcast</a>, but focused more on the tools. I'm more interested in the communication issues/aspects.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/51642#516427Answer by hasseg for Designers and developers working togetherhasseg2008-09-09T11:27:22Z2008-09-09T11:27:22Z<p>This may be a bit off topic (I'm replying specifically to your question about source control and graphics), but you <em>can</em> put binary data (images etc.) into source control (and in my opinion in a lot of cases should) -- they just take up more disk space and you can't use a diff view to analyze what has changed in any meaningful way, but what you do gain is a history of commit messages documenting each revision, rollback ability and the ability to easily archive (<em>tagging a revision</em> in SVN terms) all files (be they visual assets, documentation, source code, whatever) belonging to a specific release/version together. It's also easier for your build system to just fetch everything required for building a specific version of your software from the source control.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/51651#516516Answer by edg for Designers and developers working togetheredg2008-09-09T11:33:09Z2008-09-09T11:33:09Z<p>Involve the graphic designer in early design and architecture sessions.</p>
<p>You want to involve them to reveal misaligned assumptions and to establish a pattern of working together rather than throwing things back and forth over the wall.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/51659#516598Answer by David McLaughlin for Designers and developers working togetherDavid McLaughlin2008-09-09T11:36:51Z2008-09-09T11:36:51Z<p>I have spent 4 months on a project working extremely closely with a designer and he has still not picked up the basic idea of CVS (which is not my choice of source control system). I'm talking template files, JavaScript and CSS here. He's not stupid, it's just one of these things that makes his job harder so he resists fully commiting himself to it.</p>
<p>In my case I had to really hammer home the point that almost all of my JavaScript depended on the mark-up and when he changed his pure CSS, DIV-based layout into a table-based one without telling me then all my JS is going to break.</p>
<p>Often during the course of the project myself and the designer, who I get on with quite well and play soccer with outside of work, had very heated exchanges about our respective responsibilities. If I didn't know him well enough to just get past these exchanges then I think it would have created an unbearable working environment. So I think it's important you establish between you both and with some sort of manager or project supervisor exactly what is expected of both parties during the project. </p>
<p>In my case there have been very few problems lately, because the situation with CVS has been sorted out as well as the idea that he can't just go and change the mark-up whenever he feels like it. Rather than try and create template files and work on them directly, the designer only works on static files and its my responsibility to plug them into my template files.</p>
<p>It's all about communication and a little bit of compromise on both sides.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/51669#516690Answer by DaveK for Designers and developers working togetherDaveK2008-09-09T11:43:58Z2008-09-09T11:43:58Z<p>Quite frankly you should tell the designer that images can, should and "will be put in source control mister!" :) </p>
<p>It may be slightly non-conventional and you wont be able to do a merge or anything of that nature, but there will be revisions and a history, etc .. Images can also be embedded in a resource file which goes into source control as well. </p>
<p>XAML can (and should) be put in source control and as its a markup file it will benefit from all of the features. </p>
<p>As far as tips from working with a designer, the one you are working with scares the heck outta me just by that comment alone, so it may all boil down to WHO you are working with. I would explain basic best practices in a nice manner and proceed from there.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/52991#5299116Answer by Jonas Follesø for Designers and developers working togetherJonas Follesø2008-09-09T21:47:23Z2008-09-09T21:47:23Z<p>One of the things I've discovered is that how you as a developer design your code greatly affects what the designer can do with it. Often you download a Silverlight or WPF sample application from the web and open it up in Blend, just to have Blend crash on you because the code doesn't run well inside the designer. If it doesn't crash, it seldom look anything like the running application.</p>
<p>I recently gave a talk at Tech Ed Australia and New Zealand about techniques you can apply to "design for designability". A short bulled list is included:</p>
<ol>
<li><p>Write code that can take advantage of data binding. The Model-View-ViewModel or the presentation pattern is a good fit for this.</p></li>
<li><p>Supply "design time" stubs for your service dependencies. If the class you are binding against makes web service calls be sure to replace the web service client with a stub class that returns "dummy data" that the designer consumes inside blend. This can easily be done through IoC and Dependency Injection, injecting one implementation if HtmlPage.IsEnabled == false.</p></li>
<li><p>By using data binding you can limit the number of "named elements" you have in your XAML file. If you write allot of code behind you end up coupling your C# code against named elements such as txtName or txtAddress, making it easy for the designer to "screw up".</p></li>
<li><p>Use a command pattern instead of code behind click event handlers. By loosely couple the invoker of an event from the handler you can have less named elements, and you give the designer the freedom to choose between a Button or a Menu Item to invoke a specific command.</p></li>
<li><p>Test your code in Blend! Even if you consider your self a pure developer you should test that your code is consumable by a tool, and strive to get a best possible experience at design time. Some would argue that a tool shouldn't effect your software design, just as some one complains about "design for testability", and making software design decisions just to make the code more testable. I think it's a smart thing to do, and the only way you can get some real designer-developer work flow going.</p></li>
</ol>
<p>Other tips would be to start small. If your designer is new to XAML, WPF and Silverlight, start by introducing them to the project team, and have them do some basic designs in the tools they know. Let them do some buttons and illustrations in Adobe Illustrator, and export it to XAML, and show them how you can leverage their design assets directly. Continue by introducing more and more, and hopefully they get interested and want to make the switch to Blend. It's quite a learning curve, but it sure is worth it!</p>
<p>Good luck!</p>
<p>PS: I have written allot about patterns and making designer friendly code on my blog at <a href="http://jonas.follesoe.no" rel="nofollow">http://jonas.follesoe.no</a>. You can also find links to a video recording of my Tech Ed talk, as well as lots of links to further reading on the topic.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/69922#699226Answer by AndyL for Designers and developers working togetherAndyL2008-09-16T06:54:48Z2008-09-16T06:54:48Z<p>Originally, it was envisioned that professional designers would work in Expression Blend, and developers would work in Visual Studio, making changes to a single shared set of source files. While it is certainly possible to do that (so long as you are careful to check regularly that you haven't broken something expected by the other dev. or design tool), many members of the developer community, including some inside Microsoft, have discovered benefits in keeping Blend and Visual Studio project activity SEPARATE -- even to the point of manually cutting and pasting carefully-refactored versions of Blend-generated Xaml into the "official" VStudio project source, rather than allowing designers and developers operate directly on a single shared code base. Microsoft's User Experience Team in the UK published a video describing the problems they ran into trying to coordinate designer and developer efforts on actual projects.</p>
<p><a href="http://channel9.msdn.com/posts/Charles/Real-World-WPF--Designers-and-Developers-working-together/" rel="nofollow">Real_World_WPF_DesignersAndDevelopersWorkingTogether</a></p>
<p>One of the main lessons learned is that you can't staff a project with designers and developers who are completely ignorant of each other's domains. Developers need to be familiar enough with Blend that they can provide designers with useful UI shells for the designer to decorate, and useful data "stubs" the designer can design interactivity against, and the designer needs to have enough understanding of development issues that they don't do things like delete controls and replace them with custom visual elements - not realizing that they broke all the functionality tied to the original control.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/162846#1628461Answer by cplotts for Designers and developers working togethercplotts2008-10-02T15:04:51Z2008-10-02T15:04:51Z<p>I'm a big believer in the Integrator approach which is really the role I have had to perform to make our WPF efforts successful.</p>
<p>Laurent Bugnion has a <a href="http://geekswithblogs.net/lbugnion/archive/2007/05/13/WPF-The-integrator.aspx" rel="nofollow">post</a> on this that describes what I'm talking about. <a href="http://nerdplusart.com/" rel="nofollow">Robby Ingebretsen</a> is also a big believer in this approach.</p>
<p>But basically, someone has to cover the 'gap' that exists between the developer world and designer world. What usually happens is that this person comes from either the developer world or the designer world. If they come from the developer world, then they are probably a developer with designer tendencies (they're responsible for look and feel, the visuals in the application, the layout of the screens, etc.). If they come from the designer world, then they aren't afraid of code and the enjoy diving down every now and then to code to get that animation or whatever sparkling.</p>
<p>However, regardless of what world they come from, they usually have to build skills that they never have had before. In my case, I am developer that loves the user interface layer and therefore I would say that I am a developer with designer tendencies. In order to cover that gap and have productive conversations with our graphics designer, I have had to pick up a whole bunch of designer type skills like: learning to use Expression Design, XAM 3D, etc.</p>
<p>Shannon Braun recently gave a presentation at a local developer conference about the developer/designer relationship and the workflows that the community is discovering works for them. I didn't attend the conference, but I thought his <a href="http://www.sysknowlogy.com/2008/09/09/UI+Designer+And+Developer+Workflow.aspx" rel="nofollow">slides</a> were a great discussion on the matter.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/533597#5335972Answer by helifreak for Designers and developers working togetherhelifreak2009-02-10T18:42:19Z2009-02-10T18:42:19Z<p>Microsoft's vision of the designer/developer workflow marriage definitely seems to break down in real life. I have experience working on a fairly large scale WPF project which involved 2 dedicated design resources for about 4 months. Here are some facts that Microsoft seems to often forget.</p>
<ul>
<li>Designers often prefer to use Macs (designers at my company are 100% Mac - 0% Windows)</li>
<li>Blend doesn't run on a Mac (as far as VM solutions - designers typically don't like geeky solutions like running weird applications in a foreign OS).</li>
<li>Designers use their tools of the trade - Photoshop and Illustrator. Period.</li>
<li>The aggressiveness of today's schedules usually don't provide ample time for designers to learn a totally new application / design environment (like Blend).</li>
</ul>
<p>So given the above, what I noticed was that this creates a new job type - either a very techy designer or a graphically enlightened programmer. Basically, someone who can take the design assets in raw form - usually .psd or illustrator format and apply these as needed to the application process.</p>
<p>I turned out to be that guy (graphically enlightened programmer). I spent a lot of time exporting XAML from Illustrator files, cleaning them up by hand when necessary, and making these assets easily usable display objects in Blend or VS. There were also times where I would take a a design element and re-draw it using blend ( usually when the original asset was bitmap based and it made more sense to convert it to vector).</p>
<p>My application may not have been typical - as it was extremely graphically rich and resolution independence was one of the main objectives as it needed to look good on multiple resolutions and aspect ratios (think of the difficulties in designing for TV in todays landscape - things have to look good in both low-res SD and scale well up to hi-res HD).</p>
<p>In summary, I think WPF is an awesome technology and absolutely a step in the right direction for Microsoft. It however is not the end-all be-all solution for integrating the designer in the development process - unless you redefine the role of designer.</p>
http://stackoverflow.com/questions/51624/designers-and-developers-working-together/730888#7308880Answer by Brent Schooley for Designers and developers working togetherBrent Schooley2009-04-08T16:58:15Z2009-04-08T16:58:15Z<p>In my experience, the integrator or "devsigner" role really needs to be involved in this process unless everyone on the (small) team are able to perform this role. This is a very rare circumstance. Usually you will find that developers are very good at developing but aren't so great with design/usability and designers are great with aesthetics/usability but don't want to or are not educated enough to code. Having someone that can crossover into both worlds and "speak the language" is very important.</p>
<p>The integrator needs to coordinate the controls that are being developed with the design assets that are being created by the designers. In our current project, we have 6 active developers and 2 designers from an outside shop. I am the integrator for this project and I spend most of my day in Expression Blend. The developers work primarily in VS creating controls that meet our product spec and the design shop is designing what the end product will look like. The designers are working in Illustrator. My job is to take the Illustrator files and create control styles from them and then apply them to the controls developed by our development team. As we move towards Blend 3 with native support for PSD and AI files, this task becomes much easier.</p>
<p>It is very helpful to create the "look" for your application in a separate solution from the main trunk of the application and then merge your ResourceDictionaries into the main app later. You can get the look and feel correct without getting too caught up in what could still be incomplete controls.</p>