Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / MaskedTextBoxDesignerActionList.cs / 1 / MaskedTextBoxDesignerActionList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Design { using System; using System.Design; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms; using System.Diagnostics; ////// Describes the list of actions that can be performed in the MaskedTextBox control from the /// Chrome pannel. /// internal class MaskedTextBoxDesignerActionList : System.ComponentModel.Design.DesignerActionList { MaskedTextBox maskedTextBox; ITypeDiscoveryService discoverySvc; IUIService uiSvc; IHelpService helpService = null; ////// Constructor receiving a MaskedTextBox control the action list applies to. The ITypeDiscoveryService /// service provider is used to populate the canned mask list control in the MaskDesignerDialog dialog and /// the IUIService provider is used to display the MaskDesignerDialog within VS. /// public MaskedTextBoxDesignerActionList(MaskedTextBoxDesigner designer) : base(designer.Component) { this.maskedTextBox = (MaskedTextBox)designer.Component; this.discoverySvc = GetService(typeof(ITypeDiscoveryService)) as ITypeDiscoveryService; this.uiSvc = GetService(typeof(IUIService)) as IUIService; this.helpService = GetService(typeof(IHelpService)) as IHelpService; if (discoverySvc == null || uiSvc == null) { Debug.Fail("could not get either ITypeDiscoveryService or IUIService"); } } ////// Pops up the Mask design dialog for the user to set the control's mask. /// public void SetMask() { string mask = MaskPropertyEditor.EditMask(this.discoverySvc, this.uiSvc, this.maskedTextBox, helpService); if( mask != null ) { PropertyDescriptor maskProperty = TypeDescriptor.GetProperties(this.maskedTextBox)["Mask"]; Debug.Assert( maskProperty != null, "Could not find 'Mask' property in control." ); if( maskProperty != null ) { maskProperty.SetValue(this.maskedTextBox, mask); } } } ////// Returns the control's action list items. /// public override DesignerActionItemCollection GetSortedActionItems() { DesignerActionItemCollection items = new DesignerActionItemCollection(); items.Add(new DesignerActionMethodItem(this, "SetMask", SR.GetString(SR.MaskedTextBoxDesignerVerbsSetMaskDesc))); 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
- EventOpcode.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- MessagePartProtectionMode.cs
- httpapplicationstate.cs
- MappingSource.cs
- ListViewInsertEventArgs.cs
- XmlSchemaType.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- SqlVisitor.cs
- FixedHyperLink.cs
- SwitchAttribute.cs
- SizeChangedEventArgs.cs
- ListManagerBindingsCollection.cs
- DbConnectionClosed.cs
- Hash.cs
- XmlCharacterData.cs
- ExtensionSimplifierMarkupObject.cs
- WebServiceTypeData.cs
- FormViewRow.cs
- System.Data.OracleClient_BID.cs
- UnauthorizedAccessException.cs
- VerificationAttribute.cs
- CodeLabeledStatement.cs
- WebBrowserContainer.cs
- CodeObjectCreateExpression.cs
- OnOperation.cs
- OptionalRstParameters.cs
- _RequestLifetimeSetter.cs
- CodeDefaultValueExpression.cs
- WebZoneDesigner.cs
- PrtTicket_Editor.cs
- UIElement3D.cs
- SqlXml.cs
- TextDecorationUnitValidation.cs
- GifBitmapDecoder.cs
- IndexedEnumerable.cs
- StickyNoteHelper.cs
- LightweightCodeGenerator.cs
- InkPresenter.cs
- FilterElement.cs
- RemoveStoryboard.cs
- ScriptHandlerFactory.cs
- TextEmbeddedObject.cs
- MenuBase.cs
- regiisutil.cs
- OleDbConnectionFactory.cs
- RichTextBoxAutomationPeer.cs
- SqlClientPermission.cs
- SafeLibraryHandle.cs
- QualificationDataItem.cs
- ButtonFieldBase.cs
- HttpGetServerProtocol.cs
- OleDbInfoMessageEvent.cs
- SafeProcessHandle.cs
- Root.cs
- RegexMatch.cs
- NullableLongSumAggregationOperator.cs
- WebReferenceOptions.cs
- LineUtil.cs
- HttpCachePolicy.cs
- DecoderFallbackWithFailureFlag.cs
- DataServiceQueryException.cs
- WorkflowTraceTransfer.cs
- ButtonColumn.cs
- InteropExecutor.cs
- PopupControlService.cs
- ValidatingPropertiesEventArgs.cs
- DrawingGroup.cs
- StateMachine.cs
- DefaultDiscoveryService.cs
- PlatformNotSupportedException.cs
- FixUp.cs
- Menu.cs
- WebServiceReceive.cs
- AdRotator.cs
- AppSettingsSection.cs
- PathSegmentCollection.cs
- InvokePatternIdentifiers.cs
- HttpHandlersSection.cs
- DataGridColumn.cs
- ToolStripRenderEventArgs.cs
- FileDialogCustomPlace.cs
- DictionaryKeyPropertyAttribute.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- _SslStream.cs
- SystemColors.cs
- StringFunctions.cs
- UserNameSecurityTokenParameters.cs
- EntityDataSourceDesigner.cs
- WorkflowLayouts.cs
- DataServiceProcessingPipelineEventArgs.cs
- MailWebEventProvider.cs
- TextDecorationUnitValidation.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- URLAttribute.cs
- DataSourceHelper.cs
- SQLChars.cs
- TextElementEditingBehaviorAttribute.cs
- ToolStripRendererSwitcher.cs
- DynamicResourceExtension.cs