Changeset 922 for branches/eraser6/Eraser/ToolBar.cs
- Timestamp:
- 4/29/2009 9:23:39 AM (4 years ago)
- File:
-
- 1 edited
-
branches/eraser6/Eraser/ToolBar.cs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/ToolBar.cs
r918 r922 40 40 41 41 //Initialize the toolbar item list 42 Items = new Tool barItemCollection(this);42 Items = new ToolBarItemCollection(this); 43 43 44 44 //Hook mouse move events to show the currently selected item … … 172 172 /// Stores the items in the Tool Bar. 173 173 /// </summary> 174 public Tool barItemCollection Items174 public ToolBarItemCollection Items 175 175 { 176 176 get; … … 270 270 } 271 271 272 public class Tool barItemCollection : ICollection<ToolBarItem>, IList<ToolBarItem>,272 public class ToolBarItemCollection : ICollection<ToolBarItem>, IList<ToolBarItem>, 273 273 IEnumerable<ToolBarItem> 274 274 { … … 277 277 /// </summary> 278 278 /// <param name="win">The owning toolbar window.</param> 279 internal Tool barItemCollection(ToolBar win)279 internal ToolBarItemCollection(ToolBar win) 280 280 { 281 281 window = win;
Note: See TracChangeset
for help on using the changeset viewer.
