| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * Project : Mono
- * Namespace : System.Web.UI.MobileControls
- * Class : MobileListItem
- * Author : Gaurav Vaish
- *
- * Copyright : 2003 with Gaurav Vaish, and with
- * Ximian Inc
- */
- using System;
- using System.Web.UI;
- namespace System.Web.UI.MobileControls
- {
- public class MobileListItem : TemplateContainer//, IStateManager
- {
- public MobileListItem()
- {
- }
- public MobileListItem(MobileListItemType type)
- {
- throw new NotImplementedException();
- }
- public MobileListItem(string text)
- {
- throw new NotImplementedException();
- }
- public MobileListItem(string text, string value)
- {
- throw new NotImplementedException();
- }
- public MobileListItem(object dataItem, string text, string value)
- {
- throw new NotImplementedException();
- }
- public string Text
- {
- get
- {
- throw new NotImplementedException();
- }
- set
- {
- throw new NotImplementedException();
- }
- }
- public string Value
- {
- get
- {
- throw new NotImplementedException();
- }
- set
- {
- throw new NotImplementedException();
- }
- }
- }
- }
|