Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
6answers
2k views

Baseline snaplines in custom Winforms controls

I have a custom user control with a textbox on it and I'd like to expose the baseline (of the text in the textbox) snapline outside of the custom control. I know that you create a designer (inherited ...
10
votes
4answers
3k views

What approaches are available to dummy design-time data in WPF?

I am working without expression blend and just using the XAML editor in vs2010. The wisdom of this aside, I am increasingly seeing a need for design-time data binding. For simple cases, the ...
8
votes
5answers
2k views

.NET Windows Forms design time rules

I have an object that starts a thread, opens a file, and waits for input from other classes. As it receives input, it writes it to disk. Basically, it's a thread safe data logging class... Here's ...
6
votes
1answer
262 views

Detect DesignTime in WP7 code

simple question, does anyone know how to detect whether code is executed design-time with WP7? The usual Silverlight solution of HtmlPage.IsEnabled doesn't work in this context.
5
votes
1answer
212 views

How to fix Delphi component with TFont property that gets “cannot assign NIL to a TFont” at design time?

I have started building a new component in Delphi 6 Pro. Currently it just has a single TFont published property. However, when I drop the component on a Form at design time, and click on the edit ...
5
votes
7answers
188 views

How do you handle multiple TPanel's at design-time?

I have several TPanel's on my main form that I show/hide depending on options a user selects. The problem is that at design time I have to constantly move them around to edit them. Is there an ...
5
votes
1answer
412 views

Visual Studio 2010 design time collection editor

I am working on a custom control for WPF and Silverlight. This control has a collection property of a complex type that is abstract, like such: public Collection<MyBase> Configuration { ...
4
votes
2answers
128 views

Why I got another size of a component in IDE?

Using Delphi 6 Prof. I created a bevel component for separation. Because I used spacers with 8 pixel (width x height) I thought that I create this component, and when I put it on a Form, I need only ...
4
votes
2answers
146 views

How to unclutter the form when a application has very many datasets

In a moderately complex database application in Delphi it's easy to have dozens of datasets (tables and queries) and associated datasources on a form. All these clutter up the screen. It gets worse ...
4
votes
1answer
161 views

Creating a custom design-time collection editor in WPF

I want to have a custom collection editor dialog in WPF (to edit a collection property on a custom control at design time) preferably by extending the exiting one , but I cannot find the existing one ...
4
votes
1answer
74 views

How do I debug a designtime package unloading crash involving a crash in ThreadProc in Classes.pas?

I am not sure how to track down the following crash: It happens when Unloading a Designtime Package that is used in-house at my company. It is our code, thus it is our bug to fix, not a third party ...
4
votes
3answers
74 views

How to know whether control in design-time or not?

I have a class (control), implementing ICustomTypeDescriptor, which is used both in design-time and run-time by PropertyGrid for customization. I need to expose different properties in design-time ...
4
votes
3answers
80 views

How can I add single-character items to a list in design-time?

I've got a VB6 form with a ComboBox on it, which I'm trying to add a few single-character items to (specifically, 'A' through 'D'.) I can enter them into the properties box (using Ctrl-Enter to add ...
4
votes
5answers
518 views

How can a component at designtime determine the project directory

I write a component which should store some information relative to the project directory. Every time a property of my component is changed it should write a file. So how can a component determine the ...
4
votes
2answers
1k views

Can't databind at design time in WPF using MVVM - ViewModel property never gets called

Ok, I'm pulling my hair out over this, so any help will be hugely appreciated! I'm building a WPF application using the MVVM pattern. In an attempt to get data in at design time I am using the ...
4
votes
3answers
1k views

Design-time drag and drop in Delphi?

Before Delphi 2006 (I think) introduced the TFlowPanel and TGridPanel, I did a control that was similar in concept. It still does a couple of things those controls do not do, and when upgrading my ...
4
votes
1answer
920 views

Adding design-time support for a nested container in a custom/usercontrol (Winforms)

I have something similar to a wizard control, in the middle is a Panel I would like to use to place any child controls. I have found using the ScrollableControlDesigner will allow dropped controls to ...
4
votes
2answers
1k views

Add custom design time command to WinForms control

I have a custom WinForms control (inherits from control, i.e. without user interface jsut as Timer) to which I want to add a custom command add design time. This could be similar to the "right click ...
3
votes
0answers
50 views

Auto-generate name for a custom TreeViewItem

I have a class derived from TreeviewItem(Custom TreeViewItem) which is used by a class derived from Treeview(custom Treeview Control). When the user of my control adds items to my custom TreeView ...
3
votes
0answers
46 views

How implement escape key on user control child controls at design-time, so that focus moves to respective parent control?

When one works in WinForms designer, you can click on a child control to select it. When you then hit the Esc key, the selection moves up to the parent control. If you press Esc key again, the next ...
3
votes
2answers
131 views

Recommend Book for WPF Custom Control Creation with Design-Time Support [closed]

I need a book that describes building WPF controls. The book should cover advance data-binding, adding design-time support, and so on.
3
votes
1answer
453 views

Design time data in WPF

[using vs2010 & expression blend v4] Hi - trying to load up some design time data in WPF and Blend, using Josh Smith's concept here: ...
3
votes
1answer
491 views

WPF Design-Time vs Run-Time Style Differences with Triggers

I am having a big issue with how XAML is rendered in Design-Time vs Run-Time. For the most part, things are consistent, but when I use any styles which have a Trigger, the trigger is not checked in ...
3
votes
4answers
363 views

WPF get Type in Design time?

Well i have a control that inherits usercontrol(view) and im using it as you use a usercontrol (a base control) now here is the problem if i do MessageBox.Show(this.GetType().ToString()); i get ...
3
votes
1answer
927 views

Visual Studio Design Time Property - Form List Drop Down

[EDIT] To be clear, I know how to get a list of forms via reflection. I'm more concerned with the design time property grid. I have a user control with a public property of the type Form. I want to ...
3
votes
1answer
217 views

Is anyone really using ThumbnailAttribute for Toolbox icons?

I was putting finishing touches on a new WPF/Silverlight custom control and decided that this time I would go with .NET 3.5 SP1 requirement (for WPF version). So, I decided to go with recommended new ...
3
votes
1answer
300 views

Visual Studio design time event handling

I am trying to create a WPF wizard control in visual studio. I am successful except I would like to navigate the pages in design time by clicking the next and previous buttons. The pages are being ...
3
votes
1answer
346 views

How is an assembly resolved at design time?

I have an extensibility library (or the start of one), with a UITypeEditor. I'd now like to decorate the property with the EditorAttribute. I don't want to reference the extensibility library, as it ...
3
votes
1answer
1k views

Design-Time drag and drop

I'm currently working of a project where my part is to design a Design Surface where the end user can add/remove/move controls at run-time. I followed this tutorial "Hosting Windows Forms Designers, ...
3
votes
1answer
783 views

Can a Windows Forms control have a Design Time-only property?

I wish to allow the user of my control to choose the licensing method for the control. The choice comes from an enumeration, so they must choose one of the methods I have laid out for them. This ...
3
votes
2answers
692 views

providing designtime ViewModel data for Blend and VS

In a MVVM based application, what options do I have to provide ViewModel data at design time, so our designers can actually see something in Blend3 (and VS 2008). How are you doing this? Can I utilize ...
3
votes
2answers
6k views

Designing WPF UserControl that gets its DataContext from outer controls: What is best practice to have some sample data in designer but use inherited DC at runtime?

I am designing a WPF user control which contains other user controls (imagine a WidgetContainer, containing different Widgets) - using M-V-VM architecture. During development, I have ...
3
votes
2answers
773 views

How to detect design time in a VS.NET 2003 control library project

Code below is not working as expected to detect if it is in design mode (VS.Net 2003 - Control Library): if (this.Site != null && this.Site.DesignMode == true) { // Design Mode } else { ...
2
votes
2answers
50 views

Silverlight5 MarkupExtension at Design Time

I have a simple IMarkupExtension as follows: public class HelloWorldMarkup : IMarkupExtension<string> { public string ProvideValue(IServiceProvider serviceProvider) { return ...
2
votes
0answers
34 views

How Enter key behaves for a textbox in the IWindowsFormsEditorService.DropDownControl(userControl)

I have a custom control with a property Value. The property grid displays the editor in the dropdown style, using the IWindowsFormsEditorService.DropDownControl(userControl) method within the ...
2
votes
3answers
171 views

How to ensure correct 'requires' definition of a Delphi run-time package from within a design-time package when creating an installer

I am creating an installer for components that currently do not have one (for example the excellent SynEdit editor library), this has also allowed me to get to understand design and run-time packages ...
2
votes
1answer
160 views

Accessing assemblies at design time in Blend 4

I am getting an exception from my code while designing in Blend 4. I have narrowed the issue down to loading a specific library. Other libraries can be loaded fine, just this one fails. So, for ...
2
votes
1answer
182 views

Design Time Data From External XML Files

Does Visual Studio 2010 Visual Designer allow loading of data via external XML files during design time? It appears that I can add it via d:DataContext, but I have a lot of data and it is easier to ...
2
votes
2answers
150 views

Why isn't my revised .NET Windows Form not showing new changes after running the program again?

In my desktop application, previously I have designed the form and ten execute it but then I went for slight changes in my form.But even after changing, while I run the program now the previously ...
2
votes
2answers
215 views

Why my custom control referencing a .NET wrapper cannot be designed?

Why I get the following error in the Visual Studio (2010) designer if a try to load the Form1 that hosts my custom control at design-time? Could not find type 'myCustomControl'. Please make sure ...
2
votes
1answer
179 views

Design time exception not caught in .Net Winforms

I have a form that is used at design-time to configure various properties. I've tried two ways to do a form-level catch all exception: (1) I add a handler to Application.ThreadException in the ...
2
votes
2answers
68 views

Blend - PropertyChanges are not getting updated

I have a custom control in Silverlight, the change of property via property window is not getting updated until I build the application once again. What could be the problem? Say for example. I have ...
2
votes
2answers
407 views

Design-Time Population of ListBox with Sample Data in WPF

I have a view (usercontrol) that contains a listbox. At runtime the listbox will be populated with instances of another view (also a usercontrol). How can I populate the listbox in design-time (in ...
2
votes
3answers
294 views

Using Moq at Blend design time

This might be a bit out there, but suppose I want to use Moq in a ViewModel to create some design time data, like so: public class SomeViewModel { public SomeViewModel(ISomeDependency dependency) ...
2
votes
2answers
298 views

Someway to override Delphi default procedures at Design Time?

Someway to override Delphi default procedures at Design Time ? I need to override the InstanceSize at design time, I did it runtime using FastCode method: ...
2
votes
1answer
353 views

Silverlight/WPF and Blend: DataBind a text field, but define a design-time value?

Hopefully this is simple - I DataBind a bunch of labels and text controls in a Silverlight application (to DependencyProperties that I create in my class), but of course the text is empty at design ...
2
votes
3answers
330 views

How to have code in the constructor that will NOT be executed at design time by Visual Studio?

I have a method call in the constructor of my user control that does something that won't work at design time (connecting to a database), and Visual Studio just bailed out when I tried to add that ...
2
votes
1answer
242 views

Detect design time in NetBeans

When using the Swing graphical editor in NetBeans is it possible for a custom component to detect that it's design time? E.g. public CustomComponent() { initComponents(); if ...
2
votes
1answer
166 views

How can I make a component disappear in the form designer?

I'm creating a custom control that contains other controls, including two scroll bars, one horizontal, one vertical. There's a property to set one or both scroll bars invisible, which works fine at ...
2
votes
1answer
574 views

Design-time editor support for controls collection

I'd like to add a property which represents a collection of controls to a component and have a collection editor with which I can easily select the controls that belong to the collection. VS does ...

1 2 3 4