Why is my custom control deleted

T

tony

Hello!

I have a very specific question and that is about how to inherit a visual
control for example the control System.Windows.Forms.TextBox without causing
the View Designer to delete the control when there are some compile errors.
It's the same problem with any visual control that you inherit. The control
is deleted as soon as you use the View Designer when there is compile error.


It's very easy to reproduce my problem. You can do it in this way.
1. Create a class called ExtTextBox like this. In my example here I have
removed the namespace. But if you include namespace make sure you have
access to it.
public class ExtTextBox : System.Windows.Forms.TextBox
{
public ExtTextBox() {}
}
As you can see this class ExtTextBox inherit from the ordinary components
System.Windows.Forms.TextBox in the .NET framework

2. Create a windows form with any name. The default is Form1

3. Use the View Designer and drag the control TextBox into the window form.
My control was called textBox1

4. Because I want the control textBox1 to be an instance of ExtTextBox I
have to edit the InitializeComponent() I don't have any other idea.
Here is an extract from my windows form called Form1.
Only the interesting rows is written. Two rows is important here.
First saying that control textBox1 is of type ExtTextBox.
Second edit the InitializeComponent and say that textBox1 is an instance of
ExtTextBox.
public class Form1 : Form
{
private ExtTextBox textBox1; // First saying that control textBox1 is of
type ExtTextBox.

....
....
....

Private void InitializeComponent()
{
//Second edit the InitializeComponent and say that textBox1 is an instance
of ExtTextBox
this.textBox1= new ExtTextBox();
...
...
...
}
}

5 Compile. Hopefully you don't get any compile errors. When you run the
application only the textBox is being displayed. The problem might start
even here. If you get any compile error and you use the View Designer the
control named textBox1 is being deleted.

6 If you don't get any compile error make a change so you get a compile
error and then use the View Designer the control named textBox1 is being
deleted.

7 Now to my question. I can't use controls that being deleted automatically
when I get compile error as soon as I use the View Designer.

8. If I want to use inheritance on visual control how do I do. I just can't
have it as it is now. Or is there any good workaround.

9 I just can't use inheritance in the way I do now.

10. I hope that you have a good suggestion how I should use inheritance on
visual control to avoid this kind of problems.


Additional information: There is a project containing
several forms and some code class files. One file in the project is a code
class file which contains this ExtTextBox in this way.
public class ExtTextBox : System.Windows.Forms.TextBox
{
public ExtTextBox() {}
}

When you build the project(assemby) and you get some compile error and you
then use the View Designer on a form containing this inherited control the
control will be deleted.

I have also noted that you can avoid that the control is being deleted but
it's a very annoying way to do it on.
Before you build the project(assembly) you click on Windows->Close All
documents.
Then you build and you get some compile error and you can still use the View
Designer and see the control.
I just can't use that solution having to close all the documents every time
before I build the project.

When I use inheritance I want to extend for example the TextBox class by
additional functionality.
If I create a userControl(see below) for example like this. I can't extent
the class TextBox with additional functionality because the control is a
member in the UserControl class. I can extend the functionality of class
UserControl1 but that is not what I want.
public class UserControl1 : System.Windows.Forms.UserControl
{
private System.Windows.Forms.TextBox textBox1;
...
...
...
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox():
...
...
...
}
}

When View Designer delete the control all statement about the control is
gone in the InitializeComponenet()

I hope that my problem is kind of bug in the .NET framework.
I use VS 2003.


//Tony
 
S

Stoitcho Goutsev \(100\)

Tony,

You cannot edit the InitializeComponent by hand. The VS desiger clears and
regenerates that method in many occasions.

If you want to create an iherited control that you can drag and drag on a
form you need to add it manually to the toolbox.

Other possibility is not to d&d, but create and add the control from code.

Bottom line - never ever write to the Initialize method by hand.
 
C

Claes Bergefall

In 2003 it worked just fine to do exactly as the OP said. I just tried it in
2005 and it seems to work there too, so not sure what the problem is.

To the OP:
I did exactly as you described and it works just fine for me. I even changed
the ExtTextBox constructor to throw an exception. That caused the designer
to appear with an error, but after removing the exception the control was
still there as expected. Introducing a compile error didn't cause any
problems either with the designer. Control was still there. Looks like an
problem with your installation or something. This has always worked in the
past and as far as I can tell it still does.

/claes
 
S

Stoitcho Goutsev \(100\)

Claes,

It may work in some cases, but this is method that is cleaned up and very
often. It is mentioned somewhere in the docs - only the designer is supposed
to write there. This is one of the reasons they moved in a partial class for
VS2005
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top