| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- //
- // System.ComponentModel.Design.CollectionEditor
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Windows.Forms;
- using System.Windows.Forms.Design;
- using System.Drawing.Design;
- namespace System.ComponentModel.Design
- {
- public class CollectionEditor : UITypeEditor
- {
- protected abstract class CollectionForm : Form
- {
- [MonoTODO]
- public CollectionForm (CollectionEditor editor)
- {
- }
- public object EditValue {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- [MonoTODO]
- set { throw new NotImplementedException(); }
- }
- public override ISite Site {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- [MonoTODO]
- set { throw new NotImplementedException(); }
- }
- protected Type CollectionItemType {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
-
- protected Type CollectionType {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected ITypeDescriptorContext Context {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected override ImeMode DefaultImeMode {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected object[] Items {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- [MonoTODO]
- set { throw new NotImplementedException(); }
- }
- protected Type[] NewItemTypes {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- protected bool CanRemoveInstance (object value)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual bool CanSelectMultipleInstances()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected object CreateInstance (Type itemType)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected void DestroyInstance (object instance)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual void DisplayError (Exception e)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected override object GetService (Type serviceType)
- {
- throw new NotImplementedException();
- }
- protected abstract void OnEditValueChanged();
- [MonoTODO]
- protected internal virtual DialogResult ShowEditorDialog (
- IWindowsFormsEditorService edSvc)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~CollectionForm ()
- {
- }
- }
- [MonoTODO]
- public CollectionEditor (Type type)
- {
- }
- [MonoTODO]
- public override object EditValue (ITypeDescriptorContext context,
- IServiceProvider provider,
- object value)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public override UITypeEditorEditStyle GetEditStyle (
- ITypeDescriptorContext context)
- {
- throw new NotImplementedException();
- }
- protected Type CollectionItemType {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected Type CollectionType {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected ITypeDescriptorContext Context {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
-
- protected virtual string HelpTopic {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- protected Type[] NewItemTypes {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- protected virtual bool CanRemoveInstance (object value)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual bool CanSelectMultipleInstances()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual CollectionForm CreateCollectionForm()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual Type CreateCollectionItemType()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual object CreateInstance (Type itemType)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual Type[] CreateNewItemTypes()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual void DestroyInstance (object instance)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual object[] GetItems (object editValue)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected object GetService (Type serviceType)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual object SetItems (object editValue,
- object[] value)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected virtual void ShowHelp()
- {
- throw new NotImplementedException();
- }
-
- [MonoTODO]
- ~CollectionEditor()
- {
- }
- }
- }
|