2 writes to Value
System.Web.Mobile (2)
UI\MobileControls\Design\ListItemsPage.cs (1)
275itemNode.RuntimeItem.Value = itemNode.Value;
UI\MobileControls\MobileListItem.cs (1)
272Value = sa[1];
17 references to Value
System.Web.Mobile (17)
UI\MobileControls\Adapters\ChtmlSelectionListAdapter.cs (1)
93writer.WriteEncodedText(item.Value);
UI\MobileControls\Adapters\HtmlListAdapter.cs (1)
157RenderBeginLink(writer, item.Value);
UI\MobileControls\Adapters\HtmlSelectionListAdapter.cs (3)
105WriteItemValueAttribute(writer, itemIndex, item.Value); 163WriteItemValueAttribute(writer, itemIndex, item.Value); 201WriteItemValueAttribute(writer, itemIndex, item.Value);
UI\MobileControls\Adapters\WmlListAdapter.cs (1)
82RenderLink(writer, item.Value, null, false, false, item.Text, true);
UI\MobileControls\Adapters\WmlSelectionListAdapter.cs (1)
151writer.RenderSelectOption(item.Text, item.Value);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicListAdapter.cs (1)
117RenderBeginLink (writer, item.Value, accessKey, Style, cssClass);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicSelectionListAdapter.cs (2)
186WriteItemValueAttribute(writer, itemIndex, item.Value); 239WriteItemValueAttribute (writer, itemIndex, item.Value);
UI\MobileControls\Design\ListItemsPage.cs (1)
356this._value = _runtimeItem.Value;
UI\MobileControls\MobileListItem.cs (3)
219return Value.Equals(other.Value) && Text.Equals(other.Text); 227return Value.GetHashCode();
UI\MobileControls\ObjectListItem.cs (3)
122if(!Value.Equals(other.Value) || !Text.Equals(other.Text)) 139return Value.GetHashCode();