| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // System.ComponentModel.Design.DesignerVerbCollection.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System.Collections;
- using System.Runtime.InteropServices;
- namespace System.ComponentModel.Design
- {
- [ComVisible(true)]
- public class DesignerVerbCollection : CollectionBase
- {
- [MonoTODO]
- public DesignerVerbCollection(){
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DesignerVerbCollection (DesignerVerb[] value){
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DesignerVerb this[int index]
- {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int Add (DesignerVerb value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void AddRange (DesignerVerb[] value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool Contains (DesignerVerb value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void CopyTo (DesignerVerb[] array, int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public int IndexOf (DesignerVerb value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Insert (int index, DesignerVerb value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnClear()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnInsert (int index, object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnRemove (int index, object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnSet(int index, object oldValue, object newValue)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void OnValidate(object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Remove (DesignerVerb value)
- {
- throw new NotImplementedException ();
- }
- }
- }
|