Example #1
0
    private static void BarClick(object Obj, ToolBarButtonClickEventArgs EA)
    {
        ToolBarButton    Clicked = EA.Button;
        ToolBar_Delegate Call    = (ToolBar_Delegate)Clicked.Tag;

        Call();
    }
Example #2
0
    public T_Copy (int Index)
    { This = this ;

      ImageIndex = Index ;
      ToolTipText = "Copy" ;
      Tag = new ToolBar_Delegate (Clicked) ;
      Enabled = true ;
    }
Example #3
0
    public T_ColorHighlighter (int Index)
    { This = this ;

      ImageIndex = Index ;
      ToolTipText = "Refresh Color Highlighter" ;
      Tag = new ToolBar_Delegate (Clicked) ;
      Enabled = true ;
    }
Example #4
0
    public T_Close(int Index)
    {
        This = this;

        ImageIndex  = Index;
        ToolTipText = "Close";
        Tag         = new ToolBar_Delegate(Clicked);
        Enabled     = true;
    }
Example #5
0
    public T_SaveAll(int Index)
    {
        This = this;

        ImageIndex  = Index;
        ToolTipText = "Save All";
        Tag         = new ToolBar_Delegate(Clicked);
        Enabled     = true;
    }
Example #6
0
    public T_ColorHighlighter(int Index)
    {
        This = this;

        ImageIndex  = Index;
        ToolTipText = "Refresh Color Highlighter";
        Tag         = new ToolBar_Delegate(Clicked);
        Enabled     = true;
    }