Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / RichTextBoxDesigner.cs / 1 / RichTextBoxDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.RichTextBoxDesigner..ctor()")] namespace System.Windows.Forms.Design { using Microsoft.Win32; using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Drawing; using System.Reflection; using System.Windows.Forms; ////// /// The RichTextBoxDesigner provides rich designtime behavior for the /// RichTextBox control. /// internal class RichTextBoxDesigner : TextBoxBaseDesigner { private DesignerActionListCollection _actionLists; ////// Called when the designer is intialized. This allows the designer to provide some /// meaningful default values in the control. The default implementation of this /// sets the control's text to its name. /// public override void InitializeNewComponent(IDictionary defaultValues) { base.InitializeNewComponent(defaultValues); // Disable DragDrop at design time. // Control control = Control; if (control != null && control.Handle != IntPtr.Zero) { NativeMethods.RevokeDragDrop(control.Handle); // DragAcceptFiles(control.Handle, false); } } public override DesignerActionListCollection ActionLists { get { if (_actionLists == null) { _actionLists = new DesignerActionListCollection(); _actionLists.Add(new RichTextBoxActionList(this)); } return _actionLists; } } ////// /// Allows a designer to filter the set of properties /// the component it is designing will expose through the /// TypeDescriptor object. This method is called /// immediately before its corresponding "Post" method. /// If you are overriding this method you should call /// the base implementation before you perform your own /// filtering. /// protected override void PreFilterProperties(IDictionary properties) { base.PreFilterProperties(properties); PropertyDescriptor prop; // Handle shadowed properties // string[] shadowProps = new string[] { "Text" }; Attribute[] empty = new Attribute[0]; for (int i = 0; i < shadowProps.Length; i++) { prop = (PropertyDescriptor)properties[shadowProps[i]]; if (prop != null) { properties[shadowProps[i]] = TypeDescriptor.CreateProperty(typeof(RichTextBoxDesigner), prop, empty); } } } ////// Accessor for Text. We need to replace "\r\n" with "\n" in the designer before deciding whether /// the old value & new value match. /// private string Text { get { return Control.Text; } set { string oldText = Control.Text; if (value != null) { value = value.Replace("\r\n", "\n"); } if (oldText != value) { Control.Text = value; } } } } internal class RichTextBoxActionList : DesignerActionList { private RichTextBoxDesigner _designer; public RichTextBoxActionList(RichTextBoxDesigner designer) : base(designer.Component) { _designer = designer; } public void EditLines() { EditorServiceContext.EditValue(_designer, Component, "Lines"); } public override DesignerActionItemCollection GetSortedActionItems() { DesignerActionItemCollection items = new DesignerActionItemCollection(); items.Add(new DesignerActionMethodItem(this, "EditLines", SR.GetString(SR.EditLinesDisplayName), SR.GetString(SR.LinksCategoryName), SR.GetString(SR.EditLinesDescription), true)); return items; } } } // 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
- TransformPatternIdentifiers.cs
- TypeLoadException.cs
- FixedHyperLink.cs
- MultiPropertyDescriptorGridEntry.cs
- ReliableRequestSessionChannel.cs
- BitmapEffectInputData.cs
- WmlListAdapter.cs
- BamlLocalizableResourceKey.cs
- DurableEnlistmentState.cs
- RadioButtonFlatAdapter.cs
- ProgressBarAutomationPeer.cs
- TraceSource.cs
- RelationshipType.cs
- ResourcePermissionBase.cs
- ToolStripDropDown.cs
- GlyphTypeface.cs
- ConfigUtil.cs
- ScriptBehaviorDescriptor.cs
- SafeHandles.cs
- ActivityStatusChangeEventArgs.cs
- ResolveMatchesMessageCD1.cs
- MatrixCamera.cs
- XhtmlBasicListAdapter.cs
- CompositeKey.cs
- Delegate.cs
- StdValidatorsAndConverters.cs
- CompModSwitches.cs
- Helpers.cs
- CatalogPartChrome.cs
- EntitySetBase.cs
- _SslSessionsCache.cs
- JsonReader.cs
- QilInvokeEarlyBound.cs
- Pair.cs
- TextFindEngine.cs
- Point4D.cs
- CodeThrowExceptionStatement.cs
- ReplacementText.cs
- MailSettingsSection.cs
- RemotingConfiguration.cs
- Thickness.cs
- ResXResourceWriter.cs
- CngKeyBlobFormat.cs
- ContentDisposition.cs
- EntityViewGenerationAttribute.cs
- NullableFloatMinMaxAggregationOperator.cs
- SoapIncludeAttribute.cs
- SqlWriter.cs
- ResourceExpressionBuilder.cs
- DataRecordObjectView.cs
- Visual.cs
- UmAlQuraCalendar.cs
- SortExpressionBuilder.cs
- CompiledRegexRunner.cs
- recordstatefactory.cs
- BindingBase.cs
- RegularExpressionValidator.cs
- XmlConverter.cs
- TableCellCollection.cs
- ExtentKey.cs
- XmlnsCache.cs
- UnknownWrapper.cs
- Char.cs
- Pool.cs
- SqlError.cs
- WsatServiceAddress.cs
- ApplicationId.cs
- MsmqTransportBindingElement.cs
- SpnEndpointIdentity.cs
- ContentType.cs
- LeafCellTreeNode.cs
- ToolboxItemCollection.cs
- EntityViewGenerationAttribute.cs
- TagPrefixInfo.cs
- ElementMarkupObject.cs
- DeclarativeCatalogPartDesigner.cs
- MetabaseServerConfig.cs
- XmlCountingReader.cs
- BezierSegment.cs
- TextBlockAutomationPeer.cs
- BooleanFunctions.cs
- SemaphoreFullException.cs
- HashAlgorithm.cs
- ResXResourceSet.cs
- JournalEntryStack.cs
- SqlCacheDependencySection.cs
- DropSourceBehavior.cs
- HotCommands.cs
- OleStrCAMarshaler.cs
- ExpressionBuilderContext.cs
- Transform.cs
- PolyLineSegmentFigureLogic.cs
- Token.cs
- CompareValidator.cs
- _BasicClient.cs
- XmlSchemaComplexContentExtension.cs
- ControlIdConverter.cs
- DriveNotFoundException.cs
- AsynchronousChannel.cs
- HMACSHA384.cs