In opposition to the run-time of a software, its design-time represents the time where it's being created.
2
votes
0answers
36 views
Design-Time Redraw
i created a custom listview control. I set it to add a new button every time i add a new Column. When i run the program containing my custom control, the column buttons are placed properly. However, ...
0
votes
1answer
69 views
Get components of a form at design time
I created a component which when one double-clicked it at design time, it creates another form. The code for that is the following:
function TMyComponentTest1.Execute: Boolean;
var
Form: ...
1
vote
1answer
117 views
VB.Net Update data from Datatable/Dataset at design time
I have an application with 2 separate forms...
In 1 form, it takes the inputs from user and stores it in a database...
The table, in this case is staffdetails
In the other form, there is a ...
0
votes
0answers
13 views
How to define custom UITypeEditor for closed-source controls at DESIGN-TIME
I've read this question, and the only modification i need is to achieve the same, but not at run-time, but at Design-Time.
VS WinformsDesigner rewrites my designer.cs file, but for example when i ...
1
vote
1answer
55 views
Caliburn Micro design time using naming conventions
Using Caliburn Micro 1.5.1 I'm trying to get design time bindings to work in a WP8 app. I have created a design time ViewModel which I specify explicitly in the PhoneApplicationPage:
...
0
votes
0answers
18 views
How to fix Visual Studio 2010 when install of Silverlight 5 has corrupted winforms menu designer
After installing Silverlight 5 into Visual Studio 2010 (10.0.40219.1 SP1Rel) on Windows 7 x64, the menu designer for Winforms (not Silverlight) has some rendering issues: when I click on a menuitem ...
0
votes
1answer
64 views
What code is executed as part of the XAML design time? In Visual Studio and Blend
As some background, I'm playing around with a Windows Store App and Windows Phone 8 application sharing a single ViewModel (PCL).
I'm using MVVMLight and NInject / Common Service Locator to ...
1
vote
0answers
67 views
Modify Hint which appears at design time in Delphi
Usually when a user has the mouse over a component at design time appears a Hint showing the name of the component, the origin, the size and so on.
I would like to customize this hint for my ...
23
votes
1answer
470 views
Published interface properties bug and workarounds
I wrote a set of components that link to each other via published interface properties. They are registered and installed in a design package.
Using published interface properties is not that common ...
1
vote
1answer
47 views
Add Custom Events to Collection Editor
I hope someone can point me in the right direction?
This is a C# .Net Winforms question, and I'm using VS2010 Express.
I've created a List<> collection which is embeded in a user control. I can ...
1
vote
0answers
21 views
Referencing custom component's design-time assembly
I'm trying to decouple custom component's run-time and design-time part (so the run-time can use .NET 4.0 Client Profile and the design time will use full 4.0 framework).
I have all the design ...
1
vote
0answers
94 views
XSD DataSet — using connection string from another project at design-time as well as run-time
We have a VS2010 solution that includes a web app (the startup project) and a class library for data access. The connection string is stored in the web app in a connectionString.config, which is ...
0
votes
1answer
84 views
PosEx not works in Design-Time Package
I have created a design-time package for my delphi7 IDE. I want a component on a form offer me some menu items in the context menu during design-time. When i debug the package, i can see that my code ...
0
votes
1answer
46 views
Localization Windows Phone: Is is possible to change the localized resource at design time?
I created a few resource files for different languages. (E.g. resource.resx, resource.nl-NL.resx etc)
At this moment I only can see the result with the phone emulator. (By changing the language ...
0
votes
0answers
27 views
Hooking to visual stuido double click on component at design time
In visual studio during winform(web page) design you can click on a component and then from event tab of properties window (Press F4 and then click on lightening icon) you can double click on events ...
0
votes
1answer
96 views
Unable to load a XAML resource from a project subfolder at design-time
I defined a fake view model to be used by a view in a WPF application at design time (Visual Studio 2012, .NET 4.5). The view model references an image that is a part of the project content. As long ...
0
votes
0answers
63 views
distinguish between design-time and run-time for an ActiveX in Visual C++
I have created an ActiveX control using Visual C++ to use in my another program. i want to add an hardware-ID-related license code, to be placed beside it when design-time, to ensure just authorized ...
6
votes
1answer
160 views
Delphi Designer, Is component inherited?
I'm writing a custom component editor, essentially similar to TActionList editor in that it allows creation of sub components.
Editor has buttons to add/delete components.
Now, I'd like to find out ...
1
vote
2answers
38 views
Maximise XAML in Visual Studio 2010 designer
The Visual Studio designer almost never works with any of my views/pages and I am tired of waiting for it to decide if it is going to (inevitably) fail or not.
I dont even use the VS designer, so I ...
0
votes
1answer
51 views
KeyedCollection and d:DataContext Design Error
When using a class as a d:DesignInstance that exposes a KeyedCollection<TKey, TItem>, the XAML designer complains with the following warning:
The number of generic arguments provided doesn't ...
1
vote
1answer
247 views
Set column width for QTableWidget in designtime
I cannot find any information for the following question: is there a possibility to set width to columns for QTableWidget in designtime. When I opened ui-file in text editor, I found, that columns are ...
0
votes
2answers
79 views
WPF how to use DesignerProperties.IsInDesignTool to solve a design time error “cannot create an instance”?
I have the following class that I use in order to populate a combo box:
public class DamageTypeList
{
static Begbil2Entities _DB = new Begbil2Entities();
public static ...
2
votes
1answer
64 views
Why use MEF for designtime/runtime in ViewModelLocator?
I have read a lot of articles in which MEF is used in the ViewModelLocator to separate designtime data and runtime data (to be specific, import designtiem ViewModels and runtime ViewModels). (I am ...
0
votes
2answers
105 views
How do you set a control's modifier at runtime?
private void referenceDesk_DoubleClick(object sender, EventArgs e)
{
tabControl1.TabPages.Add(new TabPage("Donkey Kong"));
}
there is no tabControl1.Modifier type command to use, and also can't ...
0
votes
2answers
230 views
c# populate combobox at design time
I already know how to populate a combobox using c# code but, Is there a way to populate a combobox at design time using the designer/properties ?
0
votes
0answers
93 views
DuplexChannelFactory (Silverlight) working at Runtime but not at Designtime
I've the following code:
var bind = new PollingDuplexHttpBinding();
bind.MaxReceivedMessageSize = 2147483647;
EndpointAddress myEndpoint = new ...
0
votes
1answer
50 views
How does visual studio designer display/render any control at design time?
So how does it do that?
Whether you are doing WinForm, WPF or ASP.NET, you can drag any visual control from the toolbox to the design surface. You didn't compile any code, didn't instantiate the ...
3
votes
2answers
243 views
Design Time Reflection
Is there a way to do reflection pre-compile - at design time?
My intent is to use T4 to spit out custom codes based on classes that implement certain interfaces. I know I can call upon reflection, ...
0
votes
1answer
125 views
ListView showing empty TextBlocks at runtime
I'm experiencing a strange problem with data-binding. In the designer everything is shown correctly, but at runtime my ListView just contains those TextBlocks with an empty string in them. I'm using ...
1
vote
1answer
69 views
How to keep my code window in VS large while working with Xaml
I'm using Visual Studio to analyze some Xaml code. I work at a fairly low level, as such, the designer is completely pointless to me. So, I find it very annoying that I double click on a Xaml file to ...
2
votes
0answers
52 views
Communication between VS extension and user controls in design mode
I'm writing a Visual Studio extension along with a WPF user control library that will be included in the VSIX package. I have an interesting requirement that involves providing data to my user ...
1
vote
1answer
283 views
How to troubleshoot and debug Visual Studio design mode errors?
Using Windows 7 and Visual Studio 2010, I am writing a C# custom UserControl. I was coding in code view for weeks and recently when I tried to switch to design mode, Visual Studio hangs, "NOT ...
0
votes
1answer
25 views
Where do I store a connection string so it is accessible by visual studio at design time?
I have some custom property editors that need to pull application data. These are working great in my test project where I am able to set a connection string in my app.config file. However, in ...
0
votes
1answer
42 views
Asp.net setting some context for a Custom UITypeEditor from parent form at Design Time
Trying to craft a way for our designers to create custom asp.net webforms for our customers. The basic idea is that we have a general set of fields that can be saved, with each customer using a ...
-1
votes
2answers
200 views
vb.net design time vs run time [closed]
which is faster for creating object in vb.net, design time vs run time?
I'm thinking if my form's object will be create in run time...does it cause a speed problem when running my form?
EDIT
for ...
1
vote
0answers
78 views
DesignInstance not working in Modern UI
d:DataContext="{d:DesignInstance vm:MyViewModelSampleData, IsDesignTimeCreatable=True}"
works in WPF and WP8, but strangely not in my Windows Store app. In it, I set Items = .... but they never show ...
0
votes
0answers
92 views
Visual Studio user control - design time support for protected property
I would like to provide the possibility of changing protected property of a control by inheriting controls in their control designers.
Similar question has been submitted on the msdn forum some time ...
5
votes
1answer
322 views
Add sub controls to custom control after click the “OK” button of the “CollectionEditor” window in design time
I've created my custom control. It has a property that is called "Tab." This property adds a collection of "FloorsInformation" controls that are inherited from "DockContainerItem" class to my custom ...
2
votes
2answers
202 views
WPF user control throws designtime exception
I have a userControl which starts a timer. It looks like the XAML designer is trying to call that code, which links to some back-end database stuff. I keep getting an unhanded exception error in the ...
0
votes
1answer
157 views
WPF Popup permanently displays in Visual Studio design-time
I’ve met strange behaviour for WPF design-time in Visual Studio 2010: after an instance of the Popup class was created, and I switched the code tab in Visual Studio to a different file, the Popup ...
1
vote
2answers
232 views
Add Image file resource to another project
I want to add/update Image resources in a .NET project, so that when the application is compiled the images will be available at runtime.
Due to having a large amount of images in several locations ...
0
votes
0answers
29 views
How to enumerate controls on a WindowsForms form when initializing another control at design time?
I'm developing a new add-in component with auto-filter functionality for our WindowsForms grid control. When this add-in control is placed on a form at design time, it should enumerate all controls on ...
3
votes
1answer
126 views
Is it possible to connect a property to an embedded component
I'd like to write a complex component that embeds other components. But I am not sure if I'll be able to connect to those components via object inspector.
To clarify, imagine a component that holds a ...
0
votes
2answers
188 views
Detecting insertion of new components at design-time in Delphi
How can my Delphi component detect at design time if any other component is being dropped on the form?
0
votes
1answer
84 views
Shared data for component property at design time
I have a component which implements an IExtenderProvider. One property contains settings which should be the same for each instance of the component the user uses within his project.
(And also ...
2
votes
3answers
316 views
Clear InnerList elements of a custom control property after delete custom control from a form in Design Mode
I add my created custom control to the new Windows Form and add some Tab to it by "Tabs" property. However, when I delete my custom control from Windows Form, elements of "Tabs" property are not ...
1
vote
1answer
344 views
How can edit field of an Expandable Property in the property grid?
I created a custom control with several properties. I add some expandable property to my custom control. Now, I want that user can edit expandable property field in the property grid and new entered ...
0
votes
1answer
137 views
Exposing internal objects of a user control in the properties view of the designer?
I've already had success exposing a collection of items in the vb.net designer using DesignerSerializationVisibility(Content). Now I have a new twist. The items in my collection for a certain custom ...
1
vote
1answer
1k views
How to debug Visual Studio 2012 instance design-time
I'm developing a WPF MarkupExtension and encountered errors during design time. With the previous version of Visual Studio 2010 it was possible to start a second instance of VS2010 and attach to the ...
1
vote
2answers
359 views
Hide ellipsis (…) button of expandable property like “…” button of font property in the property grid
I've added a new property to my custom control as expandable property like font property in Property Grid. After using from my custom control in a Windows Forms Application project, I see an ellipsis ...





