| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // System.Drawing.Design.PropertyValueItem.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System.Drawing;
- using System.Drawing.Imaging;
- using System.ComponentModel;
- namespace System.Drawing.Design
- {
- public class PropertyValueUIItem
- {
- [MonoTODO]
- public PropertyValueUIItem (Image uiItemImage,
- PropertyValueUIItemInvokeHandler handler,
- string tooltip)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual Image Image
- {
- get
- {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual PropertyValueUIItemInvokeHandler InvokeHandler
- {
- get
- {
- throw new NotImplementedException ();
- }
- set
- {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual string ToolTip
- {
- get
- {
- throw new NotImplementedException ();
- }
- set
- {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual void Reset()
- {
- throw new NotImplementedException ();
- }
- }
- }
|