Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Design / PropertyValueUIItem.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.Resets the UI item. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PerfCounterSection.cs
- InplaceBitmapMetadataWriter.cs
- XmlQueryOutput.cs
- Expressions.cs
- EventHandlersStore.cs
- DataSourceComponent.cs
- FontSourceCollection.cs
- DataDesignUtil.cs
- ColumnTypeConverter.cs
- TemplatedMailWebEventProvider.cs
- TemplateField.cs
- DiscoveryClientBindingElement.cs
- SchemaElementDecl.cs
- MetadataArtifactLoaderResource.cs
- TimeSpanConverter.cs
- ColumnResizeUndoUnit.cs
- HtmlTextArea.cs
- TransformedBitmap.cs
- formatter.cs
- ProgressBar.cs
- IssuanceLicense.cs
- SplineKeyFrames.cs
- PaintValueEventArgs.cs
- DisplayMemberTemplateSelector.cs
- basenumberconverter.cs
- MultiTrigger.cs
- Registry.cs
- PolygonHotSpot.cs
- RegexEditorDialog.cs
- MessageQueueTransaction.cs
- WindowsListBox.cs
- CharConverter.cs
- RNGCryptoServiceProvider.cs
- XmlElementList.cs
- _LocalDataStore.cs
- SelectionGlyphBase.cs
- HScrollBar.cs
- StrongTypingException.cs
- Frame.cs
- ProtectedProviderSettings.cs
- Binding.cs
- DatatypeImplementation.cs
- WindowsTokenRoleProvider.cs
- InteropExecutor.cs
- CodeAccessPermission.cs
- ItemsPanelTemplate.cs
- ReferenceConverter.cs
- Aes.cs
- ConnectorSelectionGlyph.cs
- HttpProxyCredentialType.cs
- AtomMaterializer.cs
- WebBrowsableAttribute.cs
- StartUpEventArgs.cs
- WorkflowDesignerMessageFilter.cs
- CodeStatementCollection.cs
- DetailsView.cs
- XmlSchemaSimpleContent.cs
- XmlEnumAttribute.cs
- TemplateControl.cs
- ToolStripItemTextRenderEventArgs.cs
- ISO2022Encoding.cs
- Double.cs
- XDeferredAxisSource.cs
- SubMenuStyleCollection.cs
- SessionState.cs
- IHttpResponseInternal.cs
- PartialCachingControl.cs
- OneOfTypeConst.cs
- ViewKeyConstraint.cs
- HtmlValidatorAdapter.cs
- XNameTypeConverter.cs
- TextDataBindingHandler.cs
- ISAPIRuntime.cs
- FontCacheUtil.cs
- TransformedBitmap.cs
- IPEndPoint.cs
- ZipIOBlockManager.cs
- XmlHierarchicalDataSourceView.cs
- Int32CollectionValueSerializer.cs
- ReservationNotFoundException.cs
- TraversalRequest.cs
- Util.cs
- Operand.cs
- GcHandle.cs
- TransactionChannelFaultConverter.cs
- OpCopier.cs
- OperationGenerator.cs
- RectAnimation.cs
- ZoomingMessageFilter.cs
- RawTextInputReport.cs
- TemplatedAdorner.cs
- FillBehavior.cs
- SubMenuStyle.cs
- RequestCacheEntry.cs
- DBSchemaRow.cs
- QueryExtender.cs
- FigureParaClient.cs
- SizeKeyFrameCollection.cs
- TableCellsCollectionEditor.cs
- PersonalizationProviderHelper.cs