Tagged Questions
The cider tag has no wiki summary.
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"
...
2
votes
2answers
728 views
How to fix code-complete in Visual Studio 2008
The code-complete feature in Visual Studio is very useful, and it still works for C# and C++ code - but no longer works for XAML (XML) editing.
Is there a setting somewhere that can re-enable this? ...
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
105 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
119 views
any disadvantages when opening XAML with XML Text Editor instead of Cider XAML Editor
I have made the experience that editing large XAML files is extremly faster when doing it in the standard XML text editor instead of the the split-screen cider XAML editor with the design view. This ...
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 ...