Questions tagged [design-time]

In opposition to the run-time of a software, its design-time represents the time where it's being created.

In opposition to the run-time of a software, its design-time represents the time where it's being created or when its UI is being created.

The term design-time is particularly used in the domain of widget/visual components programming as they have to be efficient in an IDE and inside its UI editor (at design-time) but also when the program runs (at run-time).

413 questions
0
votes
1 answer

Output a string a design time

I have the following code that runs at design time in my WPF app: applicationDirectory = (from assembly in AppDomain.CurrentDomain.GetAssemblies() where assembly.CodeBase.EndsWith(".exe") select…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
0
votes
1 answer

Reading custom control properties returns 0 in a constructor

How does one properly read values of custom control properties set via design time? Currently, rows and columns are set in the properties list of the control (vs.net as ide), however both properties return 0 when read from the constructor of the…
Private Void
  • 307
  • 1
  • 3
  • 14
0
votes
1 answer

Can the Visual Studio properties editor reference a property to component in another form (or class)?

As a Delphi developer moving to .NET I'm expecting similar concept like TDataModule & TForm to be available. However, I could not find way to make a reference from a component on a Form to another component on another Form (or Component) class. …
Sake
  • 4,033
  • 6
  • 33
  • 37
0
votes
1 answer

Design-time support on composite control

I'm creating a specific DataGridView control that includes two scrollbars so that I can control their size and visibility. So, I have created a User control that contains the DataGridView and the two scrollbars inside a 2x2 TableLayoutPanel. The…
-1
votes
2 answers

How to make a form's size to fill all screen at design time?

How can I make a form fill all the screen (in terms of size) when clicked (not fullscreen like f11). At design - time (Not on code behind)?
user12128654
-1
votes
2 answers

Access DataModule's event from another Form (delphi design-time)

I would like to know if there's any way to link a component's event (As TButton.OnClick) to a procedure defined in a datamodule (At design-time). At the moment, I'm doing this at runtime: MyButton.OnClick := MyDataModule.MyOnClickEvent; The goal…
Hwau
  • 850
  • 3
  • 12
  • 23
-1
votes
2 answers

Disable editing child controls of custom DevComponents.DotNetBar control

I have created a new Custom Control inheriting from Bar control of DevComponents.DotNetBar controls. Next, I have created a new dock tab in it and have added my other controls to it. After I compile my Custom Control and add my created Custom…
MRS1367
  • 1,053
  • 1
  • 14
  • 40
-3
votes
1 answer

Protect source code at delopment time in tfs

I use TFS , My question is how can i sure about that developer who work on a project can not copy source file and evict or extract them from office by Email,flash memory,USB,... ? Is there any solution with TFS? Can anyone help me?
zeinab kalanaki
  • 75
  • 6
  • 11
1 2 3
27
28