Attaching Class Files To Each Other

G

Guest

I have a class that I started writing, then decided to have it inherit from UserControl. I edited the class declaration to make it a partial class, but when I edit the designer, the changes are place in the main ..cs. So I created a Designer.cs file and added all the code that's typically auto-generated.

Is there a way to get VS to see this Designer.cs as the associated partial class for the user control? Everything looks okay as far as naming and partial class definitions. It's like VS has some other place where it's tracking what files are asscoiated with each other.

Insight?

Thanks.

J
 
G

Guest

I figured out how to do it by editing the project file directly.

Is there a way to do this via the UI?
I have a class that I started writing, then decided to have it inherit from UserControl. I edited the class declaration to make it a partial class, but when I edit the designer, the changes are place in the main ..cs. So I created a Designer.cs file and added all the code that's typically auto-generated.

Is there a way to get VS to see this Designer.cs as the associated partial class for the user control? Everything looks okay as far as naming and partial class definitions. It's like VS has some other place where it's tracking what files are asscoiated with each other.

Insight?

Thanks.

J
 
L

Linda Liu [MSFT]

Hi J,

Yes, you're right. The relationship of a Designer.cs file and its .cs file
is stored in the project file. We could edit the project file to set the
relationship between a Designer.cs file and its .cs file, if necessary.

I have spent some time trying to find a way to set the relationship within
VS IDE, but without success.

Since it is not a 'normal' way to add a UserControl as you describe, i.e.
add a class into the project first and then make it derived from the
UserControl class and change it a paritial class in code and add a
Designer.cs file later, there may not be a UI setting to set the
relationship between a Designer.cs file and a .cs file.


Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

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