summaryrefslogtreecommitdiff
path: root/R2D2/ViewController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'R2D2/ViewController.cs')
-rw-r--r--R2D2/ViewController.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/R2D2/ViewController.cs b/R2D2/ViewController.cs
index de5674f..ff6885c 100644
--- a/R2D2/ViewController.cs
+++ b/R2D2/ViewController.cs
@@ -31,7 +31,10 @@ namespace R2D2
{
base.ViewDidLoad();
- // Do any additional setup after loading the view.
+ foreach (string name in Command.GetNames())
+ {
+ commandList.Add(new NSString(name));
+ }
}
public override NSObject RepresentedObject
@@ -46,5 +49,13 @@ namespace R2D2
// Update the view, if already loaded.
}
}
+
+ partial void DoScan(NSObject sender)
+ {
+ }
+
+ partial void DoSendCommand(NSObject sender)
+ {
+ }
}
}