Possible to resize activity blocks in Visual Studio 2010 Workflow designer? - visual-studio-2010

I'm trying to edit my TFS 2010 build templates using the Visual Studio 2010 Workflow designer. I have this nice widescreen display, and the designer insists on displaying the activity blocks in itty bitty areas. How can I resize them so I can at least read the entire display descriptions?
EDIT: If this annoys you too, vote for this suggestion

The designer doesn't support resizing activities. You can collapse/expand them or zoom into the entire workflow but that is it.
Would be a nice future feature so I suggest adding it to connect as a feature request and if you post the link I will vote for it.

Related

Visual Studio 2012 Workflow Pane Width

I am currently using the Workflow designer in Visual Studio 2012 to create an automated build workflow. The XAML document that I am using was not created by me and I am new to Workflow. Some of the titles of the panes are too long to display fully and I am unable to read the text of the title. This is a problem because I am following a document, created by another developer at my workplace, that references the titles.
I thought that increasing the 'zoom' would help, but the text also zooms and remains obscured. I have tried searching Google and SO for a way to widen the panes, but have not found a solution. Does anyone know of a way to accomplish this task? I would also appreciate other suggestions.

Is it possible to customize the tool window's toolbars in Visual Studio 2010

Visual Studio 2010 has UI for editing the buttons in the toolbars of the main window. Is it possible to do the same thing for the tool window toolbars?
Even if there is no UI, I am willing to alter files manually to get the expected result. Basically, the problem I am trying to solve is that some tool windows hide the buttons that I want to use and show buttons that I don't use. I would like to reorder them.
No.
Hmm that answer was not long enough.
It is not possible.

Can I scroll splitted screens in Visual Studio in the same time?

Is it possible to scroll at the same time splitted screens in Visual Studio (Vertically or Horizontally, dont really care)?
It is not currently possible.
Here is the link to the Microsoft connect suggestion (requires login). It suggests that it may be possible to achieve the effect with a macro or an add-in.
(Here is a duplicate question regarding VS 2008.)

WPF Applications: Visual Studio vs. Expression Blend

I am a bit confused on how Visual Studio 2010 and Expression Blend 4 operate together. If I want to create a WPF application, should I start it in Expression Blend 4? If so, then how does Visual Studio 2010 natively open Expression Blend projects, or does it?
Or should I start my application in Visual Studio 2010? If so, how do I open my solution in Expression Blend.
Also, how do I modify an existing WPF form, if I need changes. If I already have events handled and code behind, how do I bring it over to expression blend, make my changes, then bring it back to visual studio without disrupting the events and code that I have created in Visual Studio 2010?
Also can someone recommend a good book that covers how to create WPF and/or Silverlight applications using Expression blend 4 and Visual Studio 2010 together.
Solutions are the same for Visual Studio and Expression Blend. You can open your solution through the file menu in expression blend, or by right clicking on a xaml file in Visual Studio and select "Open In Expression Blend".
Personally, when I need to make only a small change, like changing the text on a button, I don't go into Blend. But when I want to see what's going on, with margins and layout and stuff I always use Blend. Most often I have Visual Studio and Blend open side by side and I keep switching back and forth.
Because Expression Blend uses the same solution you don't have to worry about event handlers and such. When they are in place, they stay in place. Unless you delete the control the event is attached to of course.
Creating a solution can be done in both tools, but I start most projects in Visual Studio. There are however a few Project templates that can't be found in visual studio. For example the Databound Application project type. This will give you a start on an MVVM project, with folders in place for the Model, View and ViewModel.
You can have it open in both Visual Studio and Blend at the same time. You're prompted in Visual Studio if you make a change in Blend and vice versa.
Personally I create the new application in Visual Studio first then open it in Blend.
I usualy start my project in Blend.
Remember Blend is specially designed to make great UI, easy databindig, make easy templates and custom controls.
You can edit the code behind of your app directly in Blend but sometimes it doesn't show the intellisense; thats when you need open VS, to do that right click on your project inside blend and click on edit with Visual Studio. It'll launch VS and you can start coding.
You dont need to close VS or Blend, they booth can be open, if you make some change in VS it will notify Blend, will appear a dialogbox telling you: reload the app, click Yes the changes will be sincronized in Blend and VS, the same happens when you make changes in Blend and go to an already open instance of VS.
Too remember to install de VS tools, it will allow you to open Silverlight projects inside VS, if they arent already installed an error message will appear.
Hope my answer help you

Is there any addin for VisualStudio debugging to see DataTable content in a nice way?

Do you know if there is any add-in for Visual Studio, that shows the content of any DataTable in a nice way when I hover on the relevant variable in Debugging?
I think Data Debugger Visualizer fits your needs.
It doesn't matter even if it doesn't. With Visual Studio's Debugger Visualizer feature you can easily create your own addin to handle your specific needs. You may want to start with the following article if you'd like to have a try:-)
DataTips, Visualizers and Viewers Make Debugging .NET Code a Breeze

Resources