Tagged Questions

5
votes
2answers
305 views

Visual studio 2010 WPF/Silverlight designer default background

Is there a way to change the default background of WPF/Silverlight designer (Cider)? Or maybe some "IsInDesignMode"/ignorable hack to do so. The problem is, I have transparent backgrounds in my user ...
3
votes
2answers
969 views

XAML Designer “cannot find type” when converters are in UserControl.Resources

I have a WPF UserControl with binding converters referenced like this: <UserControl x:Class="MyControl" x:Name="MyControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
2answers
52 views

Why does my Attached Property show in Blend designer but not in VS2010?

I have an attached property and I am registering it with the designer using a design-time assembly. I am using the AttachedPropertyBrowsableForTypeAttribute so that the property will be shown when a ...
1
vote
1answer
77 views

Is there a keyboard bindable command for reset layout in visual studio 2010 cider designer?

I'm using the Visual Studio 2010 WPF designer to lay out a window, and the Reset Layout function is proving very useful whenever I move something around as the designer defaults to specifying widths, ...
0
votes
0answers
104 views

Auto generated property in xaml at design time [closed]

Possible Duplicate: VS2010 WPF designer automatically adds HorizontalAlignment="Stretch" to gridsplitter I have the weirdest problem. I wrote a small control that has a splitter ...
0
votes
1answer
157 views

What's a simple ParentAdapter implementation look like?

I'm trying to write a ParentAdapter implementation; I'm interested in providing design-time support for some WPF controls I'm writing and this is how you manage custom logic for reparenting items to ...