Click here to Skip to main content
15,891,136 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionConnect controls to thread Pin
Moshe T20-Sep-10 12:50
Moshe T20-Sep-10 12:50 
AnswerRe: Connect controls to thread Pin
Luc Pattyn20-Sep-10 13:01
sitebuilderLuc Pattyn20-Sep-10 13:01 
GeneralRe: Connect controls to thread Pin
Moshe T20-Sep-10 13:11
Moshe T20-Sep-10 13:11 
GeneralRe: Connect controls to thread Pin
Luc Pattyn20-Sep-10 13:20
sitebuilderLuc Pattyn20-Sep-10 13:20 
GeneralRe: Connect controls to thread Pin
Moshe T20-Sep-10 13:30
Moshe T20-Sep-10 13:30 
AnswerRe: Connect controls to thread Pin
dybs9-Dec-10 11:47
dybs9-Dec-10 11:47 
QuestionDesignTimeSupport for TableLayoutPanel with dynamic added controls in each cell Pin
akamper15-Sep-10 23:10
akamper15-Sep-10 23:10 
AnswerRe: DesignTimeSupport for TableLayoutPanel with dynamic added controls in each cell Pin
Henry Minute16-Sep-10 5:27
Henry Minute16-Sep-10 5:27 
I believe that to achieve the results you want you will have to implement a custom designer for your new control.

This article may give you a start Designing Nested Controls[^]. At the very least it should give you some terms to search on (ParentControlDesigner for example).

If that does not lead you to a solution then you could 'surface' the properties of the internal controls (see snippet below). This will not allow them to be selected but will at least allow their properties to be set.

C#
class MyPanel : TableLayoutPanel
{
    public string NameText
    {
        get
        {
            return myNameTextBox.Text;
        }

        set
        {
            myNameTextBox.Text = value;
        }
    }
}

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: DesignTimeSupport for TableLayoutPanel with dynamic added controls in each cell Pin
akamper16-Sep-10 22:42
akamper16-Sep-10 22:42 
QuestionProblems with embed windows media player in VB.net form Pin
ocabrera7013-Sep-10 15:05
ocabrera7013-Sep-10 15:05 
QuestionPass incoming data from Child to parent Form Pin
KenKen Wong10-Sep-10 21:38
KenKen Wong10-Sep-10 21:38 
AnswerRe: Pass incoming data from Child to parent Form Pin
Pete O'Hanlon11-Sep-10 2:11
mvePete O'Hanlon11-Sep-10 2:11 
GeneralRe: Pass incoming data from Child to parent Form Pin
KenKen Wong12-Sep-10 15:27
KenKen Wong12-Sep-10 15:27 
GeneralRe: Pass incoming data from Child to parent Form Pin
DaveyM6916-Sep-10 2:23
professionalDaveyM6916-Sep-10 2:23 
GeneralRe: Pass incoming data from Child to parent Form Pin
Pete O'Hanlon16-Sep-10 6:45
mvePete O'Hanlon16-Sep-10 6:45 
QuestionPrint on Thermal Printing Pin
All Time Programming3-Sep-10 3:32
All Time Programming3-Sep-10 3:32 
AnswerRe: Print on Thermal Printing Pin
Dave Kreskowiak3-Sep-10 6:21
mveDave Kreskowiak3-Sep-10 6:21 
GeneralRe: Print on Thermal Printing Pin
All Time Programming3-Sep-10 8:25
All Time Programming3-Sep-10 8:25 
GeneralRe: Print on Thermal Printing Pin
Dave Kreskowiak3-Sep-10 11:12
mveDave Kreskowiak3-Sep-10 11:12 
GeneralRe: Print on Thermal Printing Pin
Dave Kreskowiak3-Sep-10 13:41
mveDave Kreskowiak3-Sep-10 13:41 
GeneralRe: Print on Thermal Printing Pin
Goutam Patra4-Sep-10 1:51
professionalGoutam Patra4-Sep-10 1:51 
QuestionProblem Sending an Email from Desktop App Pin
All Time Programming2-Sep-10 22:31
All Time Programming2-Sep-10 22:31 
AnswerRe: Problem Sending an Email from Desktop App Pin
DaveAuld2-Sep-10 22:54
professionalDaveAuld2-Sep-10 22:54 
GeneralRe: Problem Sending an Email from Desktop App Pin
All Time Programming2-Sep-10 23:11
All Time Programming2-Sep-10 23:11 
GeneralRe: Problem Sending an Email from Desktop App Pin
DaveAuld3-Sep-10 0:34
professionalDaveAuld3-Sep-10 0:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.