Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Adapters / ChtmlSelectionListAdapter.cs / 1305376 / ChtmlSelectionListAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Globalization; using System.IO; using System.Web; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.MobileControls; using System.Security.Permissions; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource #else namespace System.Web.UI.MobileControls.Adapters #endif { /* * ChtmlSelectionListAdapter provides the chtml device functionality for SelectionList controls. * * Copyright (c) 2000 Microsoft Corporation */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class ChtmlSelectionListAdapter : HtmlSelectionListAdapter { /// public override bool RequiresFormTag { get { // Some browsers require the form tag to display the selection // list properly return true; } } /// public override void Render(HtmlMobileTextWriter writer) { ListSelectType selectType = Control.SelectType; if (selectType == ListSelectType.MultiSelectListBox && Device.SupportsSelectMultiple == false) { // Render occurs after SaveViewState. Here we make a temp // change which is not persisted to the view state. Control.SelectType = selectType = ListSelectType.CheckBox; } if (!Device.RequiresUniqueHtmlCheckboxNames || selectType != ListSelectType.CheckBox) { base.Render(writer); } else { MobileListItemCollection items = Control.Items; if (items.Count == 0) { return; } writer.EnterStyle(Style); bool writeBreak = false; foreach (MobileListItem item in items) { int index = items.IndexOf(item); if(writeBreak) { writer.WriteBreak(); } writer.Write(""); } else { writer.Write("\">"); } writer.WriteText(item.Text, true); writeBreak = true; } writer.ExitStyle(Style, Control.BreakAfter); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Globalization; using System.IO; using System.Web; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.MobileControls; using System.Security.Permissions; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource #else namespace System.Web.UI.MobileControls.Adapters #endif { /* * ChtmlSelectionListAdapter provides the chtml device functionality for SelectionList controls. * * Copyright (c) 2000 Microsoft Corporation */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class ChtmlSelectionListAdapter : HtmlSelectionListAdapter { /// public override bool RequiresFormTag { get { // Some browsers require the form tag to display the selection // list properly return true; } } /// public override void Render(HtmlMobileTextWriter writer) { ListSelectType selectType = Control.SelectType; if (selectType == ListSelectType.MultiSelectListBox && Device.SupportsSelectMultiple == false) { // Render occurs after SaveViewState. Here we make a temp // change which is not persisted to the view state. Control.SelectType = selectType = ListSelectType.CheckBox; } if (!Device.RequiresUniqueHtmlCheckboxNames || selectType != ListSelectType.CheckBox) { base.Render(writer); } else { MobileListItemCollection items = Control.Items; if (items.Count == 0) { return; } writer.EnterStyle(Style); bool writeBreak = false; foreach (MobileListItem item in items) { int index = items.IndexOf(item); if(writeBreak) { writer.WriteBreak(); } writer.Write(""); } else { writer.Write("\">"); } writer.WriteText(item.Text, true); writeBreak = true; } writer.ExitStyle(Style, Control.BreakAfter); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectIDGenerator.cs
- SafeSecurityHelper.cs
- WinFormsSpinner.cs
- MinMaxParagraphWidth.cs
- List.cs
- Tokenizer.cs
- WindowsScrollBar.cs
- LinqTreeNodeEvaluator.cs
- FrameworkTemplate.cs
- SafeNativeMethods.cs
- MenuItemCollection.cs
- TransformCollection.cs
- QueryPrefixOp.cs
- RepeaterItem.cs
- ScrollData.cs
- MultipleViewProviderWrapper.cs
- WorkflowValidationFailedException.cs
- ObjectSecurity.cs
- DataGridViewCellMouseEventArgs.cs
- XmlSchemaAnnotation.cs
- _NegotiateClient.cs
- SystemEvents.cs
- SamlSubjectStatement.cs
- SapiRecoContext.cs
- XmlUrlResolver.cs
- RectAnimationClockResource.cs
- FunctionQuery.cs
- HwndStylusInputProvider.cs
- X509Utils.cs
- SimpleWorkerRequest.cs
- CatalogPartDesigner.cs
- OrderedDictionaryStateHelper.cs
- PackageDocument.cs
- Decoder.cs
- ConstraintEnumerator.cs
- SafePointer.cs
- EntityConnectionStringBuilder.cs
- StatusBarDrawItemEvent.cs
- MenuAdapter.cs
- Tile.cs
- CommonRemoteMemoryBlock.cs
- SmtpReplyReader.cs
- FrameworkContentElement.cs
- ShapingWorkspace.cs
- ArrowControl.xaml.cs
- GrabHandleGlyph.cs
- DataColumnMapping.cs
- FlowDocumentScrollViewer.cs
- StructuralType.cs
- TypeContext.cs
- XmlNamespaceManager.cs
- MailFileEditor.cs
- XmlQueryTypeFactory.cs
- MediaTimeline.cs
- MaskInputRejectedEventArgs.cs
- ScriptControlManager.cs
- WpfSharedBamlSchemaContext.cs
- DesignerVerbCollection.cs
- WebBaseEventKeyComparer.cs
- XPathScanner.cs
- NamespaceEmitter.cs
- BasePattern.cs
- SqlCommandSet.cs
- CustomAttributeFormatException.cs
- WebUtil.cs
- CqlGenerator.cs
- TreeViewItem.cs
- SpeechSeg.cs
- CombinedGeometry.cs
- ObjectQuery_EntitySqlExtensions.cs
- VersionedStreamOwner.cs
- ValueUnavailableException.cs
- TextChangedEventArgs.cs
- QueryStringParameter.cs
- BooleanAnimationUsingKeyFrames.cs
- StatusBarAutomationPeer.cs
- EventBuilder.cs
- PathStreamGeometryContext.cs
- WizardPanelChangingEventArgs.cs
- InvalidPrinterException.cs
- Brushes.cs
- ObjRef.cs
- Size.cs
- ClientConvert.cs
- Misc.cs
- Track.cs
- KnownTypeAttribute.cs
- Win32Native.cs
- DbSetClause.cs
- DataGridViewRowCancelEventArgs.cs
- LayoutManager.cs
- CompressedStack.cs
- hwndwrapper.cs
- SchemaNamespaceManager.cs
- BaseDataList.cs
- SpeechRecognitionEngine.cs
- SQLConvert.cs
- ScrollChrome.cs
- SerializationFieldInfo.cs
- listitem.cs