Guest User

Untitled

a guest
Jun 13th, 2012
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Base reference not getting added
  2. public interface IColor
  3. {
  4. string color{get;set;}
  5. }
  6.  
  7. public class MyControl:UserControl,IColor
  8. {
  9. public MyControl()
  10. {
  11. InitializeComponent();
  12. }
  13. public string color{get;set;}
  14. }
Advertisement
Add Comment
Please, Sign In to add comment