Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/10 21:17:43 (14 years ago)
Author:
mkommend
Message:

corrected behavior of CheckedItemCollectionViews (ticket #893)

Location:
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs

    r3727 r3788  
    7272            this.SuspendRepaint();
    7373            locked = value;
     74            OnLockedChanged();
    7475            PropertyInfo prop = typeof(IContentView).GetProperty("Locked");
    7576            PropagateStateChanges(this, typeof(IContentView), prop);
    76             OnLockedChanged();
    7777            OnChanged();
    7878            this.ResumeRepaint(true);
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/View.cs

    r3764 r3788  
    6868            this.SuspendRepaint();
    6969            readOnly = value;
     70            OnReadOnlyChanged();
    7071            PropertyInfo prop = typeof(IView).GetProperty("ReadOnly");
    7172            PropagateStateChanges(this, typeof(IView), prop);
    72             OnReadOnlyChanged();
    7373            this.ResumeRepaint(true);
    7474          }
Note: See TracChangeset for help on using the changeset viewer.