Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/10 19:57:39 (14 years ago)
Author:
mkommend
Message:
  • new method ToolStripItemSet
  • Control.Show Hide method hidden with new keyword in View class (ticket #857)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ToolBarItem.cs

    r2696 r2704  
    2727
    2828namespace HeuristicLab.MainForm.WindowsForms {
    29   public abstract class ToolBarItem : HeuristicLab.MainForm.ToolBarItem {
    30     private ToolStripItem toolStripItem;
    31     public virtual ToolStripItem ToolStripItem {
    32       get { return this.toolStripItem; }
    33       internal set { this.toolStripItem = value; }
    34     }
    35 
     29  public abstract class ToolBarItem : ActionUserInterfaceItem,IToolBarItem {
    3630    public virtual bool IsDropDownButton {
    3731      get { return false; }
    3832    }
    39 
    40     public virtual ToolStripItemDisplayStyle ToolStripItemDisplayStyle {
    41       get { return ToolStripItemDisplayStyle.Image; }
    42     }
    4333  }
    4434}
Note: See TracChangeset for help on using the changeset viewer.