示例#1
0
 public TextBoxRouter(RouterTextBox theTextBox)
 {
     _routerTextBox = theTextBox;
     RouterName     = "RouterTextBox" + _RouterTextBoxNameIndex++;
 }
示例#2
0
 public TextBoxRouter(
     RouterTextBox theTextBox)
 {
     m_RouterTextBox = theTextBox;
     routerName = "RouterTextBox" + RouterTextBoxNameIndex++;
 }
示例#3
0
 public TextBoxRouter(
     RouterTextBox theTextBox,
     int thePriority) : base("RouterTextBox" + RouterTextBoxNameIndex++, thePriority)
 {
     m_RouterTextBox = theTextBox;
 }