Code:
/ 4.0 / 4.0 / 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. ///// 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
- ExpandableObjectConverter.cs
- RoleManagerSection.cs
- InputLanguageEventArgs.cs
- _NTAuthentication.cs
- JoinCqlBlock.cs
- ActivityDesigner.cs
- RegexFCD.cs
- AffineTransform3D.cs
- AssemblyAttributes.cs
- _Win32.cs
- CodeRemoveEventStatement.cs
- CriticalFinalizerObject.cs
- followingquery.cs
- RootContext.cs
- EditorZone.cs
- SizeConverter.cs
- DBConnection.cs
- ManagementOptions.cs
- ExternalFile.cs
- DataSetSchema.cs
- ArrangedElementCollection.cs
- TypeBuilderInstantiation.cs
- ImagingCache.cs
- EntityDataSourceStatementEditorForm.cs
- HtmlTextArea.cs
- SpnEndpointIdentityExtension.cs
- SynchronizationLockException.cs
- AddInSegmentDirectoryNotFoundException.cs
- SqlNode.cs
- UserControl.cs
- XPathArrayIterator.cs
- WebServiceHostFactory.cs
- WebServiceParameterData.cs
- MethodBuilder.cs
- ControlPager.cs
- SharedDp.cs
- ImageField.cs
- RelationshipDetailsRow.cs
- TextEmbeddedObject.cs
- VersionedStream.cs
- XpsFilter.cs
- ProjectionPlanCompiler.cs
- MetricEntry.cs
- CustomMenuItemCollection.cs
- HttpMethodAttribute.cs
- SchemaElementDecl.cs
- Oid.cs
- EllipseGeometry.cs
- DoubleAverageAggregationOperator.cs
- BitFlagsGenerator.cs
- RenderDataDrawingContext.cs
- PointAnimation.cs
- DataControlPagerLinkButton.cs
- BrowserCapabilitiesFactory.cs
- UIPermission.cs
- ProfileInfo.cs
- VarRemapper.cs
- ContainerParaClient.cs
- PreviewKeyDownEventArgs.cs
- EdmSchemaError.cs
- Span.cs
- ConstrainedDataObject.cs
- XmlNamedNodeMap.cs
- SchemaAttDef.cs
- OutputCacheProfileCollection.cs
- CodeDirectiveCollection.cs
- NativeDirectoryServicesQueryAPIs.cs
- LineBreak.cs
- PopupControlService.cs
- ScrollEventArgs.cs
- BrowserCapabilitiesFactory.cs
- DocumentReference.cs
- ConfigurationConverterBase.cs
- InsufficientMemoryException.cs
- PageParser.cs
- TargetConverter.cs
- LogicalTreeHelper.cs
- __Error.cs
- Bidi.cs
- DecimalFormatter.cs
- DirtyTextRange.cs
- XmlUtil.cs
- ReadOnlyTernaryTree.cs
- Expressions.cs
- MouseActionValueSerializer.cs
- MasterPage.cs
- PointLight.cs
- WSDualHttpSecurity.cs
- FilterEventArgs.cs
- MD5CryptoServiceProvider.cs
- GenericAuthenticationEventArgs.cs
- UnsafeNativeMethodsPenimc.cs
- Rotation3D.cs
- ProcessThreadCollection.cs
- XmlTypeMapping.cs
- Pointer.cs
- WebPermission.cs
- EntityConnection.cs
- InterleavedZipPartStream.cs
- AnimationLayer.cs