Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / LocalizeDesigner.cs / 1 / LocalizeDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Globalization; using System.Text; using System.Web.UI.Design; using System.Web.UI.WebControls; [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] [SupportsPreviewControl(true)] internal class LocalizeDesigner : LiteralDesigner { private const string DesignTimeHtml = @""; public override string GetDesignTimeHtml(DesignerRegionCollection regions) { EditableDesignerRegion region = new EditableDesignerRegion(this, "Text"); region.Description = SR.GetString(SR.LocalizeDesigner_RegionWatermark); region.Properties[typeof(Control)] = Component; regions.Add(region); return String.Format(CultureInfo.InvariantCulture, DesignTimeHtml, DesignerRegion.DesignerRegionAttributeName); } public override string GetEditableDesignerRegionContent(EditableDesignerRegion region) { PropertyDescriptor propDesc = TypeDescriptor.GetProperties(Component)["Text"]; return (string)propDesc.GetValue(Component); } public override void SetEditableDesignerRegionContent(EditableDesignerRegion region, string content) { string text = content; try { IDesignerHost designerHost = (IDesignerHost)GetService(typeof(IDesignerHost)); Control[] controls = ControlParser.ParseControls(designerHost, content); text = String.Empty; foreach (Control c in controls) { LiteralControl literal = c as LiteralControl; if (literal != null) { text += literal.Text; } } } catch { // In the unlikely event that there is an error parsing controls from the // region content, we just end up using the raw content as the Text property. // It's highly unlikely to ever throw an exception since the tool just // persisted the content moments earlier. } PropertyDescriptor propDesc = TypeDescriptor.GetProperties(Component)["Text"]; propDesc.SetValue(Component, text); } protected override void PostFilterProperties(IDictionary properties) { // Hide all properties except for ID HideAllPropertiesExceptID(properties); base.PostFilterAttributes(properties); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BitStream.cs
- TimestampInformation.cs
- EdmPropertyAttribute.cs
- activationcontext.cs
- GenericXmlSecurityToken.cs
- TemplatedWizardStep.cs
- StringFormat.cs
- DataConnectionHelper.cs
- DtdParser.cs
- SessionParameter.cs
- VisualBrush.cs
- AnimationClock.cs
- SortableBindingList.cs
- ScrollItemPattern.cs
- ImageSource.cs
- ThreadStartException.cs
- TraceLevelHelper.cs
- CngUIPolicy.cs
- Material.cs
- BaseDataList.cs
- LineInfo.cs
- DispatcherSynchronizationContext.cs
- CodePageUtils.cs
- SqlCacheDependencyDatabaseCollection.cs
- _ConnectStream.cs
- XmlWellformedWriter.cs
- CssTextWriter.cs
- SqlMethodAttribute.cs
- GPRECTF.cs
- QueryOutputWriter.cs
- Module.cs
- ReliableOutputConnection.cs
- CachingHintValidation.cs
- SQLBytesStorage.cs
- DesignerAttribute.cs
- Misc.cs
- Color.cs
- Brush.cs
- MarshalDirectiveException.cs
- PrintingPermissionAttribute.cs
- SQLResource.cs
- HierarchicalDataSourceControl.cs
- MetabaseServerConfig.cs
- TextEncodedRawTextWriter.cs
- DelegateTypeInfo.cs
- FixedTextView.cs
- FormParameter.cs
- TypeNameParser.cs
- BlurEffect.cs
- NativeMethods.cs
- SerializationAttributes.cs
- LoginName.cs
- DbReferenceCollection.cs
- RequestBringIntoViewEventArgs.cs
- CustomErrorsSection.cs
- QilXmlReader.cs
- XdrBuilder.cs
- Decoder.cs
- DbDataReader.cs
- MILUtilities.cs
- GlobalizationAssembly.cs
- DnsEndPoint.cs
- JsonWriterDelegator.cs
- SqlFacetAttribute.cs
- DuplexChannelFactory.cs
- MarkupObject.cs
- CaretElement.cs
- TransactedBatchingElement.cs
- XPathItem.cs
- ServicePointManager.cs
- RuleSettings.cs
- FormViewRow.cs
- WsdlInspector.cs
- storepermission.cs
- X509AsymmetricSecurityKey.cs
- SystemDiagnosticsSection.cs
- SubstitutionList.cs
- XsdBuildProvider.cs
- XMLDiffLoader.cs
- ProjectionNode.cs
- _AutoWebProxyScriptHelper.cs
- TimelineGroup.cs
- KeyedPriorityQueue.cs
- Closure.cs
- ParameterCollection.cs
- SuppressIldasmAttribute.cs
- DetailsView.cs
- SrgsItemList.cs
- DocumentXPathNavigator.cs
- ForEachDesigner.xaml.cs
- AttributeCollection.cs
- FixedPageStructure.cs
- RuntimeTransactionHandle.cs
- DoubleAnimationUsingPath.cs
- TimeSpanValidatorAttribute.cs
- Soap12ServerProtocol.cs
- StyleSheetComponentEditor.cs
- JulianCalendar.cs
- WmlControlAdapter.cs
- StrongNameIdentityPermission.cs