| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- //
- // System.Windows.Forms.ToolBarButton
- //
- // Author:
- // stubbed out by Jackson Harper ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System.Drawing;
- namespace System.Windows.Forms {
- // <summary>
- // This is only a template. Nothing is implemented yet.
- //
- // </summary>
- using System.ComponentModel;
- public class ToolBarButton : Component {
- //
- // --- Public Constructors
- //
- [MonoTODO]
- public ToolBarButton()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public ToolBarButton(string text)
- {
- throw new NotImplementedException ();
- }
- //
- // --- Public Properties
- //
- [MonoTODO]
- public Menu DropDownMenu {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool Enabled {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int ImageIndex {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public ToolBar Parent {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool PartialPush {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool Pushed {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public Rectangle Rectangle {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public ToolBarButtonStyle Style {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public object Tag {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string Text {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string ToolTipText {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool Visible {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
-
- // --- Public Methods
-
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException ();
- }
- //
- // --- Protected Methods
- //
- //inherited
- //protected override void Dispose(bool disposing)
- //{
- // throw new NotImplementedException ();
- //}
- }
- }
|