Example #1
0
 public MemberRow(Member m, Controller c, Form parent, bool canEdit)
 {
     InitializeComponent();
     this.member.Text = m.getName();
     this.instrument.Text = m.getInstrument();
     this.join.Text = m.getJoinDate();
     this._controller = c;
     this._model = m;
     this._parent = parent;
     if(canEdit)
         this.Cursor = System.Windows.Forms.Cursors.Hand;
 }