Wiki Sandbox

Feel free to use this page to experiment with the Text Formatting Rules. Just click the "Edit Page" link at the bottom of the page.


 pmwiki-2.2.43

Introduction

TemplateOverview

TemplateEntry

Toolkits.SharedPhidgets3

  1. public Form1() {
  2.   GroupLab.SharedPhidgets.ConnectionManager connectionManager = new GroupLab.SharedPhidgets.ConnectionManager();
  3.   connectionManager.SharedDictionaryURL = "tcp://136.159.xx.xx:sp";
  4.  
  5.   GroupLab.SharedPhidgets.Servo servo = new GroupLab.SharedPhidgets.Servo();
  6.   servo.FilterLocations.Add("Math Science 671");
  7.  
  8.   GroupLab.SharedPhidgets.ServoSkin servoSkin = new GroupLab.SharedPhidgets.ServoSkin();
  9.   servoSkin.Servo = servo;
  10.  
  11.   servoSkin.Dock = System.Windows.Forms.DockStyle.Fill;
  12.   this.Controls.Add(servoSkin);
  13. }