all groups > dotnet windows forms designtime > march 2005 > threads for march 22 - 28, 2005
Filter by week: 1 2 3 4 5
Control receiving Drag-Drop events at Design Time?
Posted by Ă–zden Irmak at 3/28/2005 4:14:39 PM
Hi,
I have a custom control which works on a custom Design-Time surface in my
application which is created using IDesignerHost and other necessary
interfaces...
I need this control to receive drag-drop notifications...I tried several
approaches like applying my custom controldesigner to ... more >>
How to specify an icon for component in toolbox?
Posted by Frank Kwong via DotNetMonster.com at 3/28/2005 12:00:00 AM
I am making a simple non-visual component and I can load that into the
toolbox such that the test WinForm application can drop it into the form.
The default icon for this component is a "gear" when I added that to the
toolbox. How can I change it to the icon of my choice and how can I create
a t... more >>
How to build a Design Time PropertyGrid
Posted by Frank Kwong via DotNetMonster.com at 3/26/2005 12:00:00 AM
My goal is to build a non-visual custom component with a PropertyGrid like
the TableStyles property of the dataGrid as a Design Time data input tool.
I got as far as the following ?
System.Collections.ArrayList rsource = new System.Collections.ArrayList();
public ArrayList Source1
{
get {ret... more >>
#if RELEASE
Posted by Franck Diastein at 3/23/2005 4:38:15 PM
Hi,
I'm making some User Controls, and one custom control depends on another
custom control...
So , I have something as this in UserControl1
text1.text = UserControl2.MyFunction("myparameter")...
If I launch the app, it works fine, but if I go to the form where both
User Controls are... more >>
Property of type System.Type to set at runtime
Posted by Patrice Lamarche at 3/22/2005 1:41:45 PM
Hello everyone,
I have a property un my form i would like to set a design time ... and
the type of the property is System.Type.
I'm trying to do it with an UITypeEditor but it fail to set my value...
I'm able to list all the Type I need but when I select it it fail.
Thanks alots i... more >>
Dialog Component
Posted by Nice Chap at 3/22/2005 10:22:20 AM
Can I make a custom form to act like a dialog component (something like
FileOpenDialog)?
I have set the following attributes to my form without any success:
<ToolboxItem(True), Designer(GetType(ComponentDesigner))> _
Public Class MyDialogComponent
When I drop the dialog component onto a... more >>
|