Guest User

Untitled

a guest
Aug 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. custom windows form properties
  2. public ProgressBar MyProgressBar
  3. {
  4. get { return progressBar1; }
  5. }
  6.  
  7. public int MyProgressBarValue
  8. {
  9. get { return progressBar1.Value; }
  10. set { progressBar1.Value = value; }
  11. }
  12.  
  13. var myCtrl = (MyControl)controlRef;
  14. myCtrl.MyProperty = xxxx;
Add Comment
Please, Sign In to add comment