Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Design / PropertyValueUIItem.cs / 1305376 / PropertyValueUIItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System.Diagnostics; using Microsoft.Win32; using System.Collections; using System.Drawing; ////// /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PropertyValueUIItem { ///Provides information about the property value UI including the invoke /// handler, tool tip, and the glyph icon to be displayed on the property /// browser. ////// /// The image to display for this. Must be 8x8 /// private Image itemImage; ////// /// The handler to fire if this item is double clicked. /// private PropertyValueUIItemInvokeHandler handler; ////// /// The tooltip for this item. /// private string tooltip; ////// /// public PropertyValueUIItem(Image uiItemImage, PropertyValueUIItemInvokeHandler handler, string tooltip){ this.itemImage = uiItemImage; this.handler = handler; if (itemImage == null) { throw new ArgumentNullException("uiItemImage"); } if (handler == null) { throw new ArgumentNullException("handler"); } this.tooltip = tooltip; } ///Initiailzes a new instance of the ///class. /// /// public virtual Image Image { get { return itemImage; } } ///Gets or sets /// the 8x8 pixel image that will be drawn on the properties window. ////// /// public virtual PropertyValueUIItemInvokeHandler InvokeHandler { get { return handler; } } ///Gets or sets the handler that will be raised when this item is double clicked. ////// /// public virtual string ToolTip { get { return tooltip; } } ///Gets or sets the /// tool tip to display for this item. ////// /// public virtual void Reset(){ } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Resets the UI item. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TrackingValidationObjectDictionary.cs
- SqlServices.cs
- BinaryConverter.cs
- BindingBase.cs
- PromptEventArgs.cs
- XmlReflectionMember.cs
- ObjectStorage.cs
- XmlSchemaValidationException.cs
- FileLoadException.cs
- SiteMapPath.cs
- GACMembershipCondition.cs
- NetCodeGroup.cs
- ProviderMetadataCachedInformation.cs
- XmlAttribute.cs
- Error.cs
- UserInitiatedNavigationPermission.cs
- StickyNoteAnnotations.cs
- ContainerFilterService.cs
- QilXmlWriter.cs
- Options.cs
- Rfc2898DeriveBytes.cs
- PropertyPanel.cs
- TrackingDataItemValue.cs
- OdbcReferenceCollection.cs
- SortExpressionBuilder.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- XmlNotation.cs
- WindowsTokenRoleProvider.cs
- XslTransform.cs
- DbException.cs
- PermissionRequestEvidence.cs
- ReliabilityContractAttribute.cs
- _IPv4Address.cs
- InternalMappingException.cs
- ObjectStateManagerMetadata.cs
- SoapAttributeAttribute.cs
- COM2Properties.cs
- CacheOutputQuery.cs
- documentation.cs
- _ConnectOverlappedAsyncResult.cs
- HtmlInputHidden.cs
- IndexerNameAttribute.cs
- RuntimeConfig.cs
- ValidationError.cs
- ResolveNameEventArgs.cs
- XmlEncoding.cs
- XmlBinaryReader.cs
- GridViewUpdateEventArgs.cs
- BindStream.cs
- DocumentGridPage.cs
- FixUpCollection.cs
- AtomicFile.cs
- WindowsRegion.cs
- EdmRelationshipRoleAttribute.cs
- UnknownWrapper.cs
- DispatcherEventArgs.cs
- dbenumerator.cs
- PublishLicense.cs
- XamlPointCollectionSerializer.cs
- XsltException.cs
- HiddenField.cs
- _TLSstream.cs
- DataBindingValueUIHandler.cs
- WeakReferenceEnumerator.cs
- SynchronousReceiveElement.cs
- EdmEntityTypeAttribute.cs
- LinqDataSourceSelectEventArgs.cs
- CodeMemberField.cs
- login.cs
- UIElementParaClient.cs
- PasswordBoxAutomationPeer.cs
- CellCreator.cs
- ITextView.cs
- ImageListImageEditor.cs
- CaseInsensitiveHashCodeProvider.cs
- DataGridViewTopRowAccessibleObject.cs
- ArgIterator.cs
- SamlAction.cs
- BuildManagerHost.cs
- VSWCFServiceContractGenerator.cs
- VirtualPathUtility.cs
- XmlEncodedRawTextWriter.cs
- UInt16Converter.cs
- WriteFileContext.cs
- PersonalizationAdministration.cs
- WebPartEditVerb.cs
- FunctionDetailsReader.cs
- DocumentViewerBaseAutomationPeer.cs
- StringPropertyBuilder.cs
- TraceHandler.cs
- ViewgenContext.cs
- FunctionNode.cs
- DataGridTextBox.cs
- XmlAttribute.cs
- MarkupObject.cs
- HttpDigestClientCredential.cs
- DispatcherHooks.cs
- SystemWebCachingSectionGroup.cs
- XmlPropertyBag.cs
- SoapAttributeAttribute.cs