Guest User

Untitled

a guest
May 7th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. protected override PropertyCollection OnCreatePropertyCollection()
  2. {
  3. List<Property> propsBuilder = new List<Property>();
  4.  
  5. propsBuilder.Add(new Int32Property("Left-hand brightness", 0, 0, 10));
  6. propsBuilder.Add(new Int32Property("Right-hand brightness", 0, 0, 10));
  7.  
  8. return new PropertyCollection(propsBuilder);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment