A用户控件包含B用户控件,在B里头如何取得A控件

A用户控件写属性访问器公开textbox  
   
  //   A中  
  public   TextBox   GetTextBox  
  {  
  get  
  {  
  return   textbox1;  
  }  
  }  
   
  //B中调用  
  A.GetTextBox
原文地址:https://www.cnblogs.com/xie/p/1244576.html