Questions tagged [designtime-attributes]

Use this tag for question involving designtime attributes in XAML.

This kind of properties are defined with design time namespace such as http://schemas.microsoft.com/expression/blend/2008 in applications developed using XAML technology (WPF, UWP).

5 questions
6
votes
0 answers

Display design time element instead of run time respective element

I am using design time namespace to use design time properties and elements. I use xmlns:d="http://schemas.microsoft.com/expression/blend/2008" Now, I need to define design time element, let's say But…
Michał Turczyn
  • 32,028
  • 14
  • 47
  • 69
4
votes
1 answer

Why "Designtime Attributes" doesn't work?

Background Google added nice "Designtime Attributes" (found about it from here) to be used only for UI-designer mode, so, for example, if you wish to show text on a textView (or EditText) just there (to help you understand how it looks like), you…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
2
votes
1 answer

Mark string parameters as MVC controller or view names in Visual Studio

Is there any way to add design time metadata to Visual Studio that would suggest a string parameter should correspond to the name of a controller or view? MVC already has this type of intellisense when authoring I have some custom Html Helper…
0
votes
1 answer

Designer Property | List with name and value

First of all what I did (easier to explain what I want to get): I've created a simple user control with a designer property of type List. [Browsable(true)] [Description("Select some.")] [Category("SelectionTest")] public List BoolList =…
C4d
  • 3,183
  • 4
  • 29
  • 50
0
votes
0 answers

Create Smart Tag for control

Can I add "Smart Tag" feature to all controls existing on the Form that derived from "Control" class, where this control doesn't have this feature originally. This "Smart Tag" may contains an editor for any property of this control. And I want it…