Reusing GUI elements

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

Hello people,

I'm new at .NET development so forgive me if I ask about the obvious.

There are several forms in my application that have similar groups of controls.
I would like to extract the UI and functionality into a single entity so I can reuse it in the application.

What is the easiest way to implement it?

(I don't really want to create a standalone control since the "grouping" only makes sense inside this particular application).

Thank you,
Alex.
 
You may want to look into creating a UserControl. This is a "min-form" like
control that allows you to visually design the user interface just like a
Form.

--
Tim Wilson
..Net Compact Framework MVP

Hello people,

I'm new at .NET development so forgive me if I ask about the obvious.

There are several forms in my application that have similar groups of
controls.
I would like to extract the UI and functionality into a single entity so I
can reuse it in the application.

What is the easiest way to implement it?

(I don't really want to create a standalone control since the "grouping"
only makes sense inside this particular application).

Thank you,
Alex.
 
Back
Top