Example #1
0
 public IOWindow(string title, IOWindowBackingStore iowBS)
 {
     InitializeComponent();
     this.Title = title;
     _iowBS = iowBS;
     this.DataContext = _iowBS;
 }
Example #2
0
 public ByteStream(string portName)
 {
     iowBS = new IOWindowBackingStore();
     _portName = portName;
 }